abstract:<!DOCTYPE html><html><head><meta charset="UTF-8"><title>Document</title><script type="text/javascript" src="jquery.js"></scri
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> <script type="text/javascript" src="jquery.js"></script> <style type="text/css"> div{width: 100px;height: 100px;background: #CCC;position:absolute;color: #fff;} </style> <script type="text/javascript"> $(document).ready(function(){ $('#right').click(function(){ $('.box1').animate({left:'+200px'},3000) $('.box1').animate({fontSize:'500px'},500) }) $('#stop').click(function(){ $('.box1').stop(true,true) }) }) </script> </head> <body> <!-- 點(diǎn)擊右移按鈕,div右移,點(diǎn)擊停止按鈕當(dāng)前效果停止 --> <button id="right">右移</button> <button id="stop">停止</button> <div>php中文網(wǎng)</div> </body> </html>
Correcting teacher:查無(wú)此人Correction time:2019-01-12 15:08:43
Teacher's summary:作業(yè)做的不錯(cuò)。 $('.box1') 這個(gè)class,我沒(méi)有看到,可能是我這邊沒(méi)顯示出來(lái)。下次把代碼縮進(jìn),整齊方便閱讀,繼續(xù)加油。