摘要:<!DOCTYPE HTML><HTML> <head> <title>JQuery的停止動畫</title> <meta charset="utf-8"> <script type="text/javascript" src=&qu
<!DOCTYPE HTML> <HTML> <head> <title>JQuery的停止動畫</title> <meta charset="utf-8"> <script type="text/javascript" src="jquery-3.3.1.min.js"></script> <style type="text/css"> div{ height:200px;width:200px; background:blue; position:absolute;color:#fff;} </style> <script type="text/javascript"> $(document).ready(function() { $('#right').click(function(){ $('.box1').animate({left:'+500px'},3000) $('.box1').animate({fontSize:'30px'},500) }) $('#stop').click(function(){ $('.box1').stop(true) }) }) </script> </head> <body> <button id="right">右移</button> <button id="stop">停止</button> <div class="box1">李潤晨大哥</div> </body> </HTML>
批改老師:韋小寶批改時間:2018-11-22 09:16:46
老師總結(jié):卻少代碼的高亮!不過代碼還算是完整!下次記得再加點總結(jié)和高亮就更不錯了哦!