返回jQuery ......登陆

jQuery 自定义动画-停止动画

阿贵2018-12-11 10:31:58190

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title> jQuery 自定义动画-停止动画</title>

<script type="text/javascript" src="jquery-3.3.1.min.js"></script>

<style type="text/css">

div{width:200px;height:200px;background:pink;position:absolute;color:#4505;}

</style>

<script type="text/javascript">

$(document).ready(function(){

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

$('.box1').animate({left:'+1720px'},3000)

$('.box1').animate({fontSize:'30px'},3000)

})

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

$('.box1').stop(true)

})


})


</script>

</head>

<body>

<button class='right'>右移</button>

<button class="stop">停止</button>

<div class='box1'>学习停止动画</div>

</body>

</html>


最新手记推荐

• 用composer安装thinkphp框架的步骤• 省市区接口说明• 用thinkphp,后台新增栏目• 管理员添加编辑删除• 管理员添加编辑删除

全部回复(0)我要回复

暂无评论~
  • 取消回复发送