给你的WordPress网站添加鼠标点击文字特效

给你的WordPress网站添加鼠标点击文字特效

1
https://www.tenlonstudio.com/3299.html

目前很多博客类网站都有鼠标点击文字特效,相信也有很多人需要,这里就分享一下这个特效代码,适合大部分博客系统,包括Typecho,Emlog

等。

1
vi /home/wwwroot/default/zls/wp-content/themes/Minimize/footer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<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": 99999,
            "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>


Leave a Reply

Your email address will not be published. Required fields are marked *