Advertisement
hogash

Untitled

Jan 11th, 2012
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. //////////////////////////////////////////////////////////////////////////
  2. // INSERT SHADOW UNDER IMAGES HAVING
  3. //////////////////////////////////////////////////////////////////////////
  4. $(window).load(function() {
  5. $('img.with-shadow-1').each(function() {
  6. $(this).wrap('<div class="block-img-shadow" />');
  7. $('<div class="under-shadow"><img src="php-includes/img.php?src=../images/image_shadows/shadow01.png&amp;w='+$(this).width()+'" alt="" /></div>').insertAfter(this);
  8. });
  9. $('img.with-shadow-2').each(function() {
  10. $(this).wrap('<div class="block-img-shadow" />');
  11. $('<div class="under-shadow"><img src="php-includes/img.php?src=../images/image_shadows/shadow02.png&amp;w='+$(this).width()+'" alt="" /></div>').insertAfter(this);
  12. });
  13. $('img.with-shadow-3').each(function() {
  14. $(this).wrap('<div class="block-img-shadow" />');
  15. $('<div class="under-shadow"><img src="php-includes/img.php?src=../images/image_shadows/shadow03.png&amp;w='+$(this).width()+'" alt="" /></div>').insertAfter(this);
  16. });
  17. $('img.with-shadow-4').each(function() {
  18. $(this).wrap('<div class="block-img-shadow" />');
  19. $('<div class="under-shadow"><img src="php-includes/img.php?src=../images/image_shadows/shadow04.png&amp;w='+$(this).width()+'" alt="" /></div>').insertAfter(this);
  20. });
  21.  
  22.  
  23. $('.head-image').each(function() {
  24. $(this).parent().append('<span class="zoom-overlay"></span>');
  25. });
  26. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement