abstrakt:<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>動畫停止作業(yè)</title> <scrip
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>動畫停止作業(yè)</title> <script src="jquery-3.3.1.min.js"></script> <script> $(document).ready(function(){ $("#biaoti").click(function(){ $("#box").slideDown(3000); }); $("#stop").click(function(){ $("#box").stop(); }); }); </script> <style type="text/css"> #box,#biaoti{padding:5px;text-align:center;background-color:#ff771b;border:solid 1px #ccc;color: #fff;} #box{padding:50px;display:none;} button{width: 100px;height: 40px;font-size: 16px;color: #fff;font-weight: bold;background:#ff771b; } </style> </head> <body> <button id="stop">停止滑動</button> <div id="biaoti">點擊這里,展開幕布播放mv</div> <div id="box"> <video src="http://www.zengzone.com/1.mp4" controls="controls" width="600px"></video> </div> </body> </html>
Korrigierender Lehrer:滅絕師太Korrekturzeit:2018-12-20 09:59:01
Zusammenfassung des Lehrers:完成的不錯呦!出來布局丑了點!學(xué)以致用了不錯!