Last active
          November 27, 2015 18:54 
        
      - 
      
 - 
        
Save jdtdesigns/2f5eeac096138f05820b to your computer and use it in GitHub Desktop.  
    toggle content
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | .toggle-content { | |
| transform: scaleY(0); | |
| transform-origin: top left; | |
| transition: transform .5s; | |
| &.open { | |
| transform: scaleY(1); | |
| transition: transform .5s; | |
| } | |
| } | |
| $('.toggle-button').on('click', function() { | |
| $('.toggle-content').toggleClass('open'); | |
| }); | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment