卫衣、变色、变形

Original 2018-12-27 20:26:32 245
abstract:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>jquery的动画效果—自定义动画</title> <script src="../jquery-3.3.1.js"></script>

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>jquery的动画效果—自定义动画</title>

<script src="../jquery-3.3.1.js"></script>

<style type="text/css">

div{

width: 200px;

height: 200px;

background: blue;

position: absolute;

}

</style>

</head>

<body>

<script type="text/javascript">

$('.but2').click(function () {

$('div').animate({

left:'200px',

opacity:'0.3',

borderRadius:'100px'

},1500);

});

});

</script>

<button class="but2">点击移动</button>

<div id="">


</div>

</body>

</html>


Release Notes

Popular Entries