Skip to content

Instantly share code, notes, and snippets.

@Sstobo
Last active November 1, 2017 17:55
Show Gist options
  • Save Sstobo/3aa888f4c0f7afc72fe95ebb841f01c1 to your computer and use it in GitHub Desktop.
Save Sstobo/3aa888f4c0f7afc72fe95ebb841f01c1 to your computer and use it in GitHub Desktop.
[Expanding grid from nothing] #css #grid
.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