Last active
November 1, 2017 17:55
-
-
Save Sstobo/3aa888f4c0f7afc72fe95ebb841f01c1 to your computer and use it in GitHub Desktop.
[Expanding grid from nothing] #css #grid
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
| .wrapper { | |
| transition:all 1.4s; | |
| height: 2000px; | |
| display: grid; | |
| grid-template-columns: 1fr 1fr 1fr 1fr; | |
| grid-template-rows: 2fr 1fr 85% 1fr; | |
| background-color: black; | |
| color: white; | |
| max-width: 1240px; | |
| min-width: 320px; | |
| } | |
| .wrapper-gallery { | |
| transition:all 1s; | |
| height: 700px; | |
| grid-template-rows: 3fr 1fr 0fr 1fr; | |
| } | |
| ####################### | |
| $(".click").click(function(){ | |
| $("article").toggleClass("wrapper-gallery" ,"hide") | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment