Guest User

Untitled

a guest
Jul 16th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. <div id="slider-wrapper">
  2. <div id="slider-content" class="slider-handle">
  3. <img src="blabla.jpg" /> (*9)
  4. </div>
  5. <div id="slider-tab" class="slider-handle">
  6. <span>Click here 2 open slider blabla.</span>
  7. </div>
  8. </div>
  9.  
  10. $(document).ready(function() {
  11. $('.slider-handle').hover(function() {
  12. $('slider-content').animate({ height: '50px' });
  13. },
  14. function() {
  15. $('slider-content').animate{{ height: '3px' });
  16. });
  17. });
  18.  
  19. $(document).ready(function() {
  20. $('#slider-wrapper').hover(function() {
  21. $('#slider-content').animate({ height: '50px' });
  22. },
  23. function() {
  24. $('#slider-content').animate{{ height: '3px' });
  25. });
  26. });
  27.  
  28. $('#slider-tab').click(function() {
  29. $('#slider-content').slideDown('normal');
  30. });
  31.  
  32. $('#slider-wrapper').mouseleave(function() {
  33. $('#slider-content').slideUp('normal');
  34. });
Add Comment
Please, Sign In to add comment