Advertisement
hogash

puzon_shadows1

Feb 17th, 2012
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. //////////////////////////////////////////////////////////////////////////
  2. // INSERT SHADOW UNDER IMAGES HAVING
  3. //////////////////////////////////////////////////////////////////////////
  4. $(window).load(function() {
  5. $('img.with-shadow-1').each(function() {
  6. var $this = $(this);
  7. var style = $this.attr('style');
  8. $this.attr('style','');
  9. $this.wrap('<div class="block-img-shadow" style="'+style+'" />');
  10. $('<div class="under-shadow"><img src="http://1000in2days.com/ss/templates/ammon/php/img.php?src=http://1000in2days.com/ss/templates/ammon/images/image_shadows/shadow01.png&amp;w='+$(this).width()+'" alt="" /></div>').insertAfter(this);
  11. });
  12.  
  13. $('img.with-shadow-2').each(function() {
  14. var $this = $(this);
  15. var style = $this.attr('style');
  16. $this.attr('style','');
  17. $this.wrap('<div class="block-img-shadow" style="'+style+'" />');
  18. $('<div class="under-shadow"><img src="http://1000in2days.com/ss/templates/ammon/php/img.php?src=http://1000in2days.com/ss/templates/ammon/images/image_shadows/shadow02.png&amp;w='+$(this).width()+'" alt="" /></div>').insertAfter(this);
  19. });
  20. $('img.with-shadow-3').each(function() {
  21. var $this = $(this);
  22. var style = $this.attr('style');
  23. $this.attr('style','');
  24. $this.wrap('<div class="block-img-shadow" style="'+style+'" />');
  25. $('<div class="under-shadow"><img src="http://1000in2days.com/ss/templates/ammon/php/img.php?src=http://1000in2days.com/ss/templates/ammon/images/image_shadows/shadow03.png&amp;w='+$(this).width()+'" alt="" /></div>').insertAfter(this);
  26. });
  27. $('img.with-shadow-4').each(function() {
  28. var $this = $(this);
  29. var style = $this.attr('style');
  30. $this.attr('style','');
  31. $this.wrap('<div class="block-img-shadow" style="'+style+'" />');
  32. $('<div class="under-shadow"><img src="http://1000in2days.com/ss/templates/ammon/php/img.php?src=http://1000in2days.com/ss/templates/ammon/images/image_shadows/shadow04.png&amp;w='+$(this).width()+'" alt="" /></div>').insertAfter(this);
  33. });
  34.  
  35. $('.head-image').each(function() {
  36. $(this).parent().append('<span class="zoom-overlay"></span>');
  37. });
  38. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement