Guest User

Untitled

a guest
May 27th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(window).load(function(){
  2.     $("blockquote,img").each(function(){
  3.         var off = $(this).offset();var rand=Math.floor(Math.random()*15)-7;
  4.         $(this).parent().append("<div style='background-color:black;position:absolute;"+
  5.                                             "-moz-transform:rotate("+rand+"deg);-webkit-transform:rotate("+rand+"deg);"+
  6.                                                                    "width:"+($(this).width())+"px;"+
  7.                                                                    "height:"+($(this).height())+"px;"+
  8.                                                                    "top:"+(off.top)+"px;"+
  9.                                                                    "left:"+(off.left-50)+"px;' >&nbsp;</div>");
  10.     });
  11. });
Add Comment
Please, Sign In to add comment