Skip to content

Commit

Permalink
added -webkit support for iGallery animations
Browse files Browse the repository at this point in the history
  • Loading branch information
viT-1 committed Sep 22, 2016
1 parent 2122dac commit 5ed205c
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion css/original/iGallery.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
.iGallery li:first-child {
page-break-before: auto;
}

}

.iGallery[ly-imgThumb ~= 'h120px'] {
Expand Down Expand Up @@ -66,6 +65,8 @@
.iGallery[ly-hldDetails ~= 'bhvrHover'] {
max-height: 0;
height: 0;

-webkit-animation: fadeOut 0.3s ease;
animation: fadeOut 0.3s ease;
}

Expand Down Expand Up @@ -118,6 +119,16 @@ a:hover .iGallery[ly-imgThumb ~= 'bhvrHover'] {
}
/* @class iGallery ****/

@-webkit-keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}

@-webkit-keyframes fadeOut {
0% { opacity: 1; }
100% { opacity: 0; }
}

@keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
Expand Down

0 comments on commit 5ed205c

Please sign in to comment.