为WordPress添加鼠标点击显示文字特效

EightPoint
EightPoint
管理员
45
文章
0
粉丝
数智软件评论107阅读模式

加入到主题footer.php中即可。文章源自八点运动-https://www.8oio.com/52.html

<script type="text/javascript">
/* 鼠标特效 */
var a_idx = 0;
jQuery(document).ready(function($) {
   $("body").click(function(e) {
       var a = new Array("音乐", "美食", "运动", "智能家居", "宝贝", "辰辰", "电脑网络", "生活", "七贤郡");
       var $i = $("<span/>").text(a[a_idx]);
       a_idx = (a_idx + 1) % a.length;
       var x = e.pageX,
       y = e.pageY;
       $i.css({
           "z-index": 999999999999999999999999999999999999999999999999999999999999999999999,
           "top": y - 20,
           "left": x,
           "position": "absolute",
           "font-weight": "bold",
           "color": "#ff6651"
       });
       $("body").append($i);
       $i.animate({
           "top": y - 180,
           "opacity": 0
       },
       1500,
       function() {
           $i.remove();
       });
   });
});
    </script>
文章源自八点运动-https://www.8oio.com/52.html文章源自八点运动-https://www.8oio.com/52.html
 最后更新:2025-2-25
匿名

发表评论

匿名网友
:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:
确定

拖动滑块以完成验证