当前位置:   article > 正文

html+css+js实现文字鼠标(点击生成文字)

html+css+js实现文字鼠标(点击生成文字)

效果图

 

 源码如下:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Document</title>
  6. </head>
  7. <body>
  8. <script>
  9. (function () {
  10. var a_idx = 0;
  11. window.onclick = function (event) {
  12. var a = new Array("❤富强❤", "❤民主❤", "❤文明❤", "❤和谐❤", "❤自由❤", "❤平等❤", "❤公正❤", "❤法治❤", "❤爱国❤",
  13. "❤敬业❤", "❤诚信❤", "❤友善❤");
  14. var heart = document.createElement("b"); //创建b元素
  15. heart.onselectstart = new Function('event.returnValue=false'); //防止拖动
  16. document.body.appendChild(heart).innerHTML = a[a_idx]; //将b元素添加到页面上
  17. a_idx = (a_idx + 1) % a.length;
  18. heart.style.cssText = "position: fixed;left:-100%;"; //给p元素设置样式
  19. var f = 16, // 字体大小
  20. x = event.clientX - f / 2, // 横坐标
  21. y = event.clientY - f, // 纵坐标
  22. c = randomColor(), // 随机颜色
  23. a = 1, // 透明度
  24. s = 1.2; // 放大缩小
  25. var timer = setInterval(function () { //添加定时器
  26. if (a <= 0) {
  27. document.body.removeChild(heart);
  28. clearInterval(timer);
  29. } else {
  30. heart.style.cssText = "font-size:16px;cursor: default;position: fixed;color:" +
  31. c + ";left:" + x + "px;top:" + y + "px;opacity:" + a + ";transform:scale(" +
  32. s + ");";
  33. y--;
  34. a -= 0.016;
  35. s += 0.002;
  36. }
  37. }, 15)
  38. }
  39. // 随机颜色
  40. function randomColor() {
  41. return "rgb(" + (~~(Math.random() * 255)) + "," + (~~(Math.random() * 255)) + "," + (~~(Math
  42. .random() * 255)) + ")";
  43. }
  44. }());
  45. </script>
  46. </body>
  47. </html>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/603307
推荐阅读
相关标签
  

闽ICP备14008679号