Gallery.css
(Criou página com '/* Fading Away Image or Gallery for Mediawiki * * @author: Unknown * current version crafted together by User:Christharp from several CSS sites. For my website:[http:/...') |
|||
Linha 5: | Linha 5: | ||
*/ | */ | ||
.fadingimages | .fadingimages | ||
− | { | + | { -webkit-transfom: translateZ (0); |
− | + | -webkit-animation: fade 5s ease-out 2.5s infinite; | |
− | + | -moz-animation: fade 5s ease-out 2.5s infinite; | |
− | + | -ms-animation: fade 5s ease-out 2.5s infinite; | |
− | + | -o-animation: fade 5s ease-out 2.5s infinite; | |
− | + | animation: fade 5s ease-out 2.5s infinite; | |
− | + | ||
− | + | ||
} | } | ||
Edição das 09h56min de 26 de junho de 2014
/* Fading Away Image or Gallery for Mediawiki
* * @author: Unknown * current version crafted together by User:Christharp from several CSS sites. For my website:Yellpedia */
.fadingimages { -webkit-transfom: translateZ (0); -webkit-animation: fade 5s ease-out 2.5s infinite; -moz-animation: fade 5s ease-out 2.5s infinite; -ms-animation: fade 5s ease-out 2.5s infinite; -o-animation: fade 5s ease-out 2.5s infinite; animation: fade 5s ease-out 2.5s infinite; }
@-webkit-keyframes fade {
0% { -webkit-transform: scale(1.5); opacity: 1; } 50% { opacity: 1; } 100% { -webkit-transform: scale(0.1); opacity: 0; } }
@-moz-keyframes fade { 0% { -moz-transform: scale(1); opacity: 1; } 50% { opacity: 1; } 100% { -moz-transform: scale(0.1); opacity: 0; } }
@-ms-keyframes fade { 0% { -ms-transform: scale(1); opacity: 1; } 50% { opacity: 1; } 100% { -ms-transform: scale(0.1); opacity: 0; } }
@-o-keyframes fade { 0% { -o-transform: scale(1); opacity: 1; } 50% { opacity: 1; } 100% { -o-transform: scale(0.1); opacity: 0; } }
@keyframes fade { 0% { transform: scale(1); opacity: 1; } 50% { opacity: 1; } 100% { transform: scale(0.1); opacity: 0; } }