Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <script>
  2. $(function(){
  3. $('.dropdown').hover(function(){
  4. $(this).animate({
  5. opacity: 0.25,
  6. height: 350
  7. }, 750, function() {
  8. });
  9. }, function(){
  10. $(this).animate({
  11. opacity: 1,
  12. height: 50,
  13. }, 750, function() {
  14. });
  15. });
  16. });
  17. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement