jquery滑动以及停止动画效果

Original 2019-03-18 23:52:17 185
abstract:<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><title>Jquery滑动效果</title><script type="text/javascript" src="../zuo

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<title>Jquery滑动效果</title>

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

<style>

.box{height:300px; width:300px; background:#888; margin-top:15px; position:absolute; line-height:300px;text-align:center; color: #fff;}

</style>


<script>

$(document).ready(function(){

$('#start').click(function(){

$('.box').animate({left:'+800px'},2000);

$('.box').animate({fontSize:'40px'},500)

})

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

$('.box').stop(true,true);

})

})

</script>

</head>

<body>

<button id="start">开始</button>

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

<div class="box">

我是会变大的文字

</div>


</body>

</html>


Correcting teacher:灭绝师太Correction time:2019-03-19 09:26:12
Teacher's summary:基础练习比较枯燥,但是还是要耐心啊,可以找点案例做点效果!

Release Notes

Popular Entries