“animation de texte rotatif” Réponses codées

animation de texte rotatif

@keyframes rotateWordsSecond {
    0% { opacity: 1; animation-timing-function: ease-in; width: 0px; }
    10% { opacity: 0.3; width: 0px; }
	20% { opacity: 1; width: 100%; }
    27% { opacity: 0; width: 100%; }
    100% { opacity: 0; }
}
Smiling Squirrel

animation de texte rotatif

.rw-words span{
	position: absolute;
	opacity: 0;
	overflow: hidden;
	width: 100%;
	color: #6b969d;
}
Smiling Squirrel

animation de texte rotatif

.rw-sentence span{
	color: #444;
	white-space: nowrap;
	font-size: 200%;
	font-weight: normal;
}
Smiling Squirrel

animation de texte rotatif

@keyframes rotateWordsFirst {
    0% { opacity: 1; animation-timing-function: ease-in; height: 0px; }
    8% { opacity: 1; height: 60px; }
    19% { opacity: 1; height: 60px; }
	25% { opacity: 0; height: 60px; }
    100% { opacity: 0; }
}
Smiling Squirrel

animation de texte rotatif

.rw-words{
	display: inline;
	text-indent: 10px;
}
Smiling Squirrel

animation de texte rotatif

.rw-sentence{
	margin: 0;
	text-align: left;
	text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
}
Smiling Squirrel

Réponses similaires à “animation de texte rotatif”

Questions similaires à “animation de texte rotatif”

Plus de réponses similaires à “animation de texte rotatif” dans CSS

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code