| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285 | /** * @name        animations.css * @author      Tobias Reich * @copyright   2014 by Tobias Reich *//* Animation Setter ------------------------------------------------*/.fadeIn {	-webkit-animation-name: fadeIn;	-webkit-animation-duration: .3s;	-webkit-animation-fill-mode: forwards;	-moz-animation-name: fadeIn;	-moz-animation-duration: .3s;	-moz-animation-fill-mode: forwards;	animation-name: fadeIn;	animation-duration: .3s;	animation-fill-mode: forwards; }.fadeOut {	-webkit-animation-name: fadeOut;	-webkit-animation-duration: .3s;	-webkit-animation-fill-mode: forwards;	-moz-animation-name: fadeOut;	-moz-animation-duration: .3s;	-moz-animation-fill-mode: forwards;	animation-name: fadeOut;	animation-duration: .3s;	animation-fill-mode: forwards; }.contentZoomIn {	-webkit-animation-name: zoomIn;	-webkit-animation-duration: .2s;	-webkit-animation-fill-mode: forwards;	-moz-animation-name: zoomIn;	-moz-animation-duration: .2s;	-moz-animation-fill-mode: forwards;	animation-name: zoomIn;	animation-duration: .2s;	animation-fill-mode: forwards; }.contentZoomOut {	-webkit-animation-name: zoomOut;	-webkit-animation-duration: .2s;	-webkit-animation-fill-mode: forwards;	-moz-animation-name: zoomOut;	-moz-animation-duration: .2s;	-moz-animation-fill-mode: forwards;	animation-name: zoomOut;	animation-duration: .2s;	animation-fill-mode: forwards; }/* moveUp ------------------------------------------------*/@-webkit-keyframes moveUp {	0% {		-webkit-transform: translateY(30px);		opacity: 0;	}	100% {		-webkit-transform: translateY(0);		opacity: 1;	}}@-moz-keyframes moveUp {	0% {		opacity: 0;	}	100% {		opacity: 1;	}}@keyframes moveUp {	0% {		transform: translateY(30px);		opacity: 0;	}	100% {		transform: translateY(0);		opacity: 1;	}}/* fadeIn ------------------------------------------------*/@-webkit-keyframes fadeIn {	0% {		opacity: 0;	}	100% {		opacity: 1;	}}@-moz-keyframes fadeIn {	0% {		opacity: 0;	}	100% {		opacity: 1;	}}@keyframes fadeIn {	0% {		opacity: 0;	}	100% {		opacity: 1;	}}/* fadeOut ------------------------------------------------*/@-webkit-keyframes fadeOut {	0% {		opacity: 1;	}	100% {		opacity: 0;	}}@-moz-keyframes fadeOut {	0% {		opacity: 1;	}	100% {		opacity: 0;	}}@keyframes fadeOut {	0% {		opacity: 1;	}	100% {		opacity: 0;	}}/* moveBackground ------------------------------------------------*/@-webkit-keyframes moveBackground {	0% {		background-position-x: 0px;	}	100% {		background-position-x: -100px;	}}@-moz-keyframes moveBackground {	0% {		background-position-x: 0px;	}	100% {		background-position-x: -100px;	}}@keyframes moveBackground {	0% {		background-position-x: 0px;	}	100% {		background-position-x: -100px;	}}/* zoomIn ------------------------------------------------*/@-webkit-keyframes zoomIn {	0% {		opacity: 0;		-webkit-transform: scale(.8);	}	100% {		opacity: 1;		-webkit-transform: scale(1);	}}@-moz-keyframes zoomIn {	0% {		opacity: 0;	}	100% {		opacity: 1;	}}@keyframes zoomIn {	0% {		opacity: 0;		transform: scale(.8);	}	100% {		opacity: 1;		transform: scale(1);	}}/* zoomOut ------------------------------------------------*/@-webkit-keyframes zoomOut {	0% {		opacity: 1;		-webkit-transform: scale(1);	}	100% {		opacity: 0;		-webkit-transform: scale(.8);	}}@-moz-keyframes zoomOut {	0% {		opacity: 1;	}	100% {		opacity: 0;	}}@keyframes zoomOut {	0% {		opacity: 1;		transform: scale(1);	}	100% {		opacity: 0;		transform: scale(.8);	}}/* popIn ------------------------------------------------*/@-webkit-keyframes popIn {	0% {		opacity: 0;		-webkit-transform: scale(0);	}	100% {		opacity: 1;		-webkit-transform: scale(1);	}}@-moz-keyframes popIn {	0% {		opacity: 0;		-moz-transform: scale(0);	}	100% {		opacity: 1;		-moz-transform: scale(1);	}}@keyframes popIn {	0% {		opacity: 0;		transform: scale(0);	}	100% {		opacity: 1;		transform: scale(1);	}}/* pulse ------------------------------------------------*/@-webkit-keyframes pulse {	0% {		opacity: 1;	}	50% {		opacity: 0.3;	}	100% {		opacity: 1;	}}@-moz-keyframes pulse {	0% {		opacity: 1;	}	50% {		opacity: 0.8;	}	100% {		opacity: 1;	}}@keyframes pulse {	0% {		opacity: 1;	}	50% {		opacity: 0.8;	}	100% {		opacity: 1;	}}
 |