JS特效 網頁點選事件 彈出指定漢字
阿新 • • 發佈:2019-01-26
最近逛一位大佬的部落格的時候,發現了他部落格上的滑鼠點選事件,效果如下圖
感覺文字和內容都特別有趣,所以就研究了一下。
將效果總結為一個HTML,內容如下,保證可用。
<html>
<head>
</head>
<body>
點選滑鼠
<script type="text/javascript" src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript">
/*天真網(tzw520.cn) 滑鼠特效 */
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>
</body>
</html>