jquery 路径动画贝塞尔动画详解编程语言

jquery 路径动画贝塞尔动画


<!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
div{
position: absolute;
top: 0px;
left: 0px;
}
#box{
width: 200px;
height: 200px;
background: red;
}
#conn{
width:20px;
height: 20px;
background: green;
position: absolute;
left:10%;
top:10%;
}
</style>
</head>
<body>
<div id="conn"></div>
<script type="text/javascript" src="/youmenghengda/js/TweenMax.js" ></script>
<script>

TweenMax.to('#conn', 5, {bezier:[{left:"10%", top:"10%"}, {left:"30%", top:"30%"}, {left:"50%", top:"10%"}], repeat:10,yoyo:true, ease:Power1.easeInOut});


</script>
</body>
</html>

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/18861.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论