/ * Mouse effects * / Click body area random dynamic text

/ * Mouse effects * /
  var a_idx = 0;
  jQuery(document).ready(function($) {
  $("body").click(function(e) {
  var a = new Array ( "❤ remember praise Oh ❤", "❤ remember a reward Oh ❤", "❤ remember concern Oh ❤", "❤ like this one ❤", "❤ I love you oh ❤");
  var $i = $("<span></span>").text(a[a_idx]);
  a_idx = (a_idx + 1) % a.length;
  var x = epageX,
  y = e.pageY;
  $i.css({
  "z-index": 99,
  "top": y - 20,
  "left": x,
  "position": "absolute",
  "font-weight": "bold",
  "color": "rgb("+~~(255*Math.random())+","+~~(255*Math.random())+","+~~(255*Math.random())+")"
  });
  $("body").append($i);
  $i.animate({
  "top": y - 180,
  "opacity": 0
  },
  1500,
  function() {
  $i.remove();
  });
  });
  });

Guess you like

Origin blog.csdn.net/anwj1020/article/details/82622779