腾讯云服务器优惠活动华纳云香港服务器

JS特效教程:给网站添加鼠标点击弹出爱心效果

有些网站在鼠标点击的时候有添加+1 这种红色数字慢慢变大变淡的淡出和上升效果,觉得蛮有趣的,但是不管是随机数字还是累积数字,用久了闲鱼觉得还是蛮单调的,而这里闲鱼要介绍的就是一个将数字变成一个爱心物件淡出的效果,作为页面的装饰,点击鼠标的时候就会弹出这种意外的小惊喜,然后消失,会让网页不会显得那么单调。

给网站添加鼠标点击弹出爱心效果的操作办法:

方法也很简单,废话不多说,直接说部署方法和代码,我们只需要将以下代码保存为 js 文件,直接在页脚引入使用即可在点击页面任意位置时看到类似以下的效果:

JS特效教程:给网站添加鼠标点击弹出爱心效果-第1张-boke112百科(boke112.com)

JS特效代码如下:

  1. (function(window,document,undefined){
  2. var hearts = [];
  3. window.requestAnimationFrame = (function(){
  4. return window.requestAnimationFrame ||
  5. window.webkitRequestAnimationFrame ||
  6. window.mozRequestAnimationFrame ||
  7. window.oRequestAnimationFrame ||
  8. window.msRequestAnimationFrame ||
  9. function (callback){
  10. setTimeout(callback,1000/60);
  11. }
  12. })();
  13. init();
  14. function init(){
  15. css(“.heart{width: 10px;height: 10px;position: fixed;background: #f00;transform: rotate(45deg);-webkit-transform: rotate(45deg);-moz-transform: rotate(45deg);}.heart:after,.heart:before{content: ”;width: inherit;height: inherit;background: inherit;border-radius: 50%;-webkit-border-radius: 50%;-moz-border-radius: 50%;position: absolute;}.heart:after{top: -5px;}.heart:before{left: -5px;}”);
  16. attachEvent();
  17. gameloop();
  18. }
  19. function gameloop(){
  20. for(var i=0;i<hearts.length;i++){
  21. if(hearts[i].alpha <=0){
  22. document.body.removeChild(hearts[i].el);
  23. hearts.splice(i,1);
  24. continue;
  25. }
  26. hearts[i].y–;
  27. hearts[i].scale += 0.004;
  28. hearts[i].alpha -= 0.013;
  29. hearts[i].el.style.cssText = “left:”+hearts[i].x+“px;top:”+hearts[i].y+“px;opacity:”+hearts[i].alpha+“;transform:scale(“+hearts[i].scale+“,”+hearts[i].scale+“) rotate(45deg);background:”+hearts[i].color;
  30. }
  31. requestAnimationFrame(gameloop);
  32. }
  33. function attachEvent(){
  34. var old = typeof window.onclick===“function” && window.onclick;
  35. window.onclick = function(event){
  36. old && old();
  37. createHeart(event);
  38. }
  39. }
  40. function createHeart(event){
  41. var d = document.createElement(“div”);
  42. d.className = “heart”;
  43. hearts.push({
  44. el : d,
  45. x : event.clientX – 5,
  46. y : event.clientY – 5,
  47. scale : 1,
  48. alpha : 1,
  49. color : randomColor()
  50. });
  51. document.body.appendChild(d);
  52. }
  53. function css(css){
  54. var style = document.createElement(“style”);
  55. style.type=“text/css”;
  56. try{
  57. style.appendChild(document.createTextNode(css));
  58. }catch(ex){
  59. style.styleSheet.cssText = css;
  60. }
  61. document.getElementsByTagName(‘head’)[0].appendChild(style);
  62. }
  63. function randomColor(){
  64. return “rgb(“+(~~(Math.random()*255))+“,”+(~~(Math.random()*255))+“,”+(~~(Math.random()*255))+“)”;
  65. }
  66. })(window,document);

鼠标点击页面任何位置都会弹出爱心效果,同时多次点击可以发现爱心的颜色也会随机变化。如果大家想体验这个效果的可以前往闲鱼博客,也可以直接将以上 JS 特效代码部署到自己站点去测试。温馨提示一下,这个 JS 代码适用所与站点哦,不管是 WordPress 站点还是 zblog 站点或其他程序建的站点都适合哦。心动不如行动,感觉试试吧,毕竟博客在于折腾嘛。

赞 (0) 打赏
版权声明:本文为投稿文章,感谢 闲鱼博客 的投稿,版权归原作者所有!发布此文是出于传递更多信息之目的,若有来源标注错误或侵犯了您的合法权益,请联系我们,确认后马上更正或删除,谢谢!
wu