摘要:<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> <script type="text/javascript" src="jqu
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> <script type="text/javascript" src="jquery-3.3.1.js"></script> <style type="text/css"> #aa{width: 100px;height: 100px;background-color: blue;position: absolute;} </style> <script type="text/javascript"> $("document").ready(function () { $("#start").click(function(){ $("#aa").animate({left:"800px"},5000); $("#aa").animate({width:"800px"},5000); $("#aa").animate({height:"800px"},5000);}) $(".stop").click(function(){ $("#aa").stop(); }) $(".stop2").click(function(){ $("#aa").stop(true); }) $(".stop3").click(function(){ $("#aa").stop(true,true); }) }) </script> </head> <body> <div> <button id="start">開始</button> <button>暫停當(dāng)前隊(duì)列</button> <button>停止全部隊(duì)列</button> <button>結(jié)束當(dāng)前任務(wù)并停止全部</button> </div> <div id="aa"></div> </body> </html>
批改老師:天蓬老師批改時(shí)間:2018-12-07 23:30:58
老師總結(jié):你的類名,也太任性了, 下次用點(diǎn)語義的