概述
之前学习的时候,看到animate方法就想到了jQuery,习惯了,以为animate就是属于jQuery。今天发现不是,至少不是jQuery的专属品,请看代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<div id="animate-test">animate-test</div>
<script>
document.getElementById("animate-test").animate([
{ transform: 'translateX(0px)' },
{ transform: 'translateX(300px)' }
], {
duration: 3000,
iterations: Infinity
});
</script>
</body>
</html>
向大家推荐一个网站,笔者很多东西都是在这上面学的
MDN-推荐网站
最后
以上就是天真蚂蚁为你收集整理的原生js的animate方法的全部内容,希望文章能够帮你解决原生js的animate方法所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复