Blogger Information
Blog 119
fans 3
comment 1
visits 94293
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
飞舞的小球演示
赵大叔
Original
552 people have browsed it

html代码

  1. <html lang="en">
  2. <head>
  3. <meta charset="UTF-8">
  4. <title>Title</title>
  5. <style>
  6. #content {
  7. width:800px;
  8. height:600px;
  9. background: rgb(252, 220, 220);
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <input type="button" value="弹出球" id="btn">
  15. <div id="content">
  16. </div>
  17. <script>
  18. var content = document.getElementById('content');
  19. var colors = ['red', 'yellow', 'blue', 'green', 'yellowgreen', '#FF00FF'];
  20. document.getElementById('btn').onclick = function(){
  21. var ball = document.createElement('div');
  22. ball.style.cssText = "position:absolute;border-radius:50%;box-shadow: 0px 3px 5px #666;";
  23. var wh = Math.floor(Math.random() * 60) + 20;
  24. ball.style.width = wh + 'px';
  25. ball.style.height = wh + 'px';
  26. ball.style.backgroundColor = colors[Math.floor(Math.random() * colors.length)];
  27. content.appendChild(ball);
  28. var top = content.clientHeight/2 - ball.offsetHeight/2;
  29. var left = content.clientWidth/2 - ball.offsetWidth/2;
  30. ball.style.left = left + "px";
  31. ball.style.top = top + "px";
  32. var x = Math.floor(Math.random() * 10) + 1;
  33. var y = Math.floor(Math.random() * 10) + 1;
  34. setInterval(function(){
  35. left += x;
  36. top += y;
  37. if(left < content.offsetLeft || left > (content.offsetLeft + content.offsetWidth - ball.offsetWidth)) {
  38. x = -x;
  39. }
  40. if(top < content.offsetTop || top > (content.offsetTop + content.offsetHeight - ball.offsetHeight - 3)) {
  41. y = -y;
  42. }
  43. ball.style.left = left + "px";
  44. ball.style.top = top + "px";
  45. }, 50)
  46. }
  47. </script>
  48. </body>
  49. </html>

效果展示

Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!