Skip to content

Instantly share code, notes, and snippets.

@gsw945
Created July 14, 2020 05:10
Show Gist options
  • Select an option

  • Save gsw945/0c05f5813dd8c40bbe4ec6633bbae0a7 to your computer and use it in GitHub Desktop.

Select an option

Save gsw945/0c05f5813dd8c40bbe4ec6633bbae0a7 to your computer and use it in GitHub Desktop.
/* 鼠标特效 */
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": "#fa2a2a"
});
$("body").append($i);
$i.animate({
"top": y - 180,
"opacity": 0
},
1500,
function() {
$i.remove();
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment