$(window).load(function(){ var $wall = $('#center'); $wall.masonry({ itemSelector: '.post, .twitter', columnWidth:220 }); $wall.infinitescroll({ navSelector : ".nav", nextSelector : ".nav a", itemSelector : ".post", loading : "", donetext : "" }, function( newElements ) { var $newElems = $( newElements ).css({ opacity: 0 }); $newElems.imagesLoaded(function(){ $newElems.animate({ opacity: 1 }); $wall.masonry( "appended", $newElems, true ); }); }); }); jQuery(function($){ $("#tweets").tweet({ username: "", count: 3, loading_text: "loading tweets..." }); });
  1. mement-0-m0ri reblogged this from drtydncflrs
  2. the-upside-down reblogged this from i-thinki-sawyou-inmy-sleep
  3. midnightfruitloops reblogged this from midnightfruitloops
  4. calmist posted this
Tumblr Mouse Cursors
/*********************************************** * Floating image script- By Virtual_Max (http://www.geocities.com/siliconvalley/lakes/8620) * Modified by Dynamic Drive for various improvements * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code ***********************************************/ //Step 1: Define unique variable names depending on number of flying images (ie:3): var flyimage1, flyimage2, flyimage3 function pagestart(){ //Step 2: Using the same variable names as 1), add or delete more of the below lines (60=width, height=80 of image): flyimage1=new Chip("flyimage1",115,118); flyimage2=new Chip("flyimage2",115,118); flyimage3=new Chip("flyimage3",115,118); //Step 3: Using the same variable names as 1), add or delete more of the below lines: movechip("flyimage1"); movechip("flyimage2"); movechip("flyimage3"); } if (window.addEventListener) window.addEventListener("load", pagestart, false) else if (window.attachEvent) window.attachEvent("onload", pagestart) else if (document.getElementById) window.onload=pagestart