Commit f9e8bdc4 authored by Sam Saccone's avatar Sam Saccone

Remove homepage slide animations.

Fixes #1194
parent ff084f06
...@@ -129,7 +129,6 @@ header nav a:not(:last-child) { ...@@ -129,7 +129,6 @@ header nav a:not(:last-child) {
font-size: 17px; font-size: 17px;
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
transition: height .5s ease-in-out;
} }
.applist li { .applist li {
...@@ -333,15 +332,6 @@ a.zocial { ...@@ -333,15 +332,6 @@ a.zocial {
border-radius: .3em; border-radius: .3em;
} }
@keyframes swoosh-in {
from { opacity: 0; transform: translateX(-500px); }
to { opacity: 1; transform: translateX(0); }
}
.anim-swoosh-in {
animation: swoosh-in 0.5s;
}
@media (max-width: 480px) { @media (max-width: 480px) {
.credit a { .credit a {
display: block; display: block;
......
...@@ -206,7 +206,6 @@ ...@@ -206,7 +206,6 @@
var isSelected = el.dataset.appList === selected; var isSelected = el.dataset.appList === selected;
el.style.display = isSelected ? 'block' : 'none'; el.style.display = isSelected ? 'block' : 'none';
el.classList.toggle('anim-swoosh-in', isSelected);
if (isSelected) { if (isSelected) {
this.adjustHeight(el); this.adjustHeight(el);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment