js的animate动画

Posted 顺子2016

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js的animate动画相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
<head>
<script src="/jquery/jquery-1.11.1.min.js">
</script>
<script>
$(document).ready(function(){
$(".start").click(function(){
$("div").animate({
left:‘500px‘,
opacity:‘0.5‘,
height:‘300px‘,
width:‘50px‘
},"slow",function(){
alert("animate动画效果的实现");
});
});
$(".reset").click(function(){
if(confirm("想恢复原样吗?")){
$("div").animate({
background:‘#98bf21‘,
height:‘100px‘,
width:‘100px‘,
position:‘absolute‘});
}
});
});
</script>
</head>

<body>

<button class="start">开始动画</button>
<button class="reset">恢复动画</button>
<p>默认情况下,所有 HTML 元素的位置都是静态的,并且无法移动。如需对位置进行操作,记得首先把元素的 CSS position 属性设置为 relative、fixed 或 absolute。</p>
<div style="background:#98bf21;height:100px;width:100px;position:absolute;">
</div>

</body>
</html>

以上是关于js的animate动画的主要内容,如果未能解决你的问题,请参考以下文章

js的animate动画

WOW.js和animate.css让页面滚动时显示动画

animated js动画示例

javascript 动画结束#js #animate

javascript 动画结束#js #animate

markdown 带有anime.js的SVG球体动画