亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

自定義動畫移動停止效果

??? 2018-12-27 00:55:01 187
????:<!DOCTYPE html><html><head> <title>jquery自定義動畫</title> <script type="text/javascript" src="./jquery-3.3.1.min.js"></script> <style type

<!DOCTYPE html>

<html>

<head>

<title>jquery自定義動畫</title>

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

<style type="text/css">

.box1{width: 200px;height: 200px;background: blue;margin-top: 20px;position: absolute;}

</style>

</head>

<body>


<script type="text/javascript">

$(document).ready(function(){

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

$('.box1').animate({

left:'+500px',


},3000)

$('.box1').animate({fontSize:'50px'},500)

})

//stop 停止動畫效果

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

$('.box1').stop() 

})

})

</script>

<button id="right">右移</button>

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

<div class="box1"> 王凱 </div>

</body>

</html>


?? ???:查無此人?? ??:2018-12-27 09:21:14
???? ??:還不錯,以后寫作業(yè),寫一些總結(jié),備注。這樣老師能知道你學怎么樣了,可以給你些建議。

??? ??

?? ??