Advertisement
hogash

Untitled

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