Advertisement
Guest User

Untitled

a guest
Oct 1st, 2014
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <div id="slideshow">
  2. <img src="http://lorempixel.com/output/city-h-c-320-500-2.jpg" />
  3. <img src="http://lorempixel.com/output/food-h-c-320-500-9.jpg" />
  4. <img src="http://lorempixel.com/output/abstract-h-c-320-500-10.jpg" />
  5. </div>
  6.  
  7. #slideshow {
  8. background-color: #ffffff;
  9. position: relative;
  10. width: 320px;
  11. height: 320px;
  12. border: 1px solid #ffffff;
  13. z-index: 10;
  14. }
  15.  
  16. $('#slideshow img').slideshowify({
  17. parentEl: '#slideshow'
  18. });
  19.  
  20. $("#slideshow").on('mouseenter', function () {
  21. $(this).find('div > img').stop(true, false);
  22. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement