Guest User

Untitled

a guest
Nov 19th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. $(document).ready(function () {
  2. $('.thumbnail').each(function(){
  3. // get height
  4. var height = $(this).height();
  5. // set slider height
  6. $(this).children('.slider').css({'height':height+'px'});
  7. $(this).hover(function () {
  8. $(this).children('.slider').slideToggle('fast');
  9. });
  10. });
  11.  
  12. .thumbnail {
  13. border: none;
  14. box-shadow: none;
  15. float: left;
  16. position: relative;
  17. margin: 5px;
  18. color: #333;
  19. overflow: hidden;
  20. }
Add Comment
Please, Sign In to add comment