我正在尝试在我的网页上应用我的网页内容,但实际上我的内容只是“隐藏”而不是淡入效果。
这是我正在使用的CSS:
/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0 !important; } to { opacity:1 !important; } }
@-moz-keyframes fadeIn { from { opacity:0 !important; } to { opacity:1 !important; } }
@keyframes fadeIn { from { opacity:0 !important; } to { opacity:1 !important; } }
fadeIn
.fade-in {
opacity:0; /* make things invisible upon start */
-webkit-animation:fadeIn ease-in 1 ; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
-moz-animation:fadeIn ease-in 1 ;
animation:fadeIn ease-in 1;
-webkit-animation-fill-mode:forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
-moz-animation-fill-mode:forwards;
animation-fill-mode:forwards;
-webkit-animation-duration:1s ;
-moz-animation-duration:1s ;
animation-duration:1s ;
}
.fade-in.one {
-webkit-animation-delay: 0.7s ;
-moz-animation-delay: 0.7s ;
animation-delay: 0.7s;
}
对于这段html:
<div data-role="content" id="contenidoHistoria" class="fade-in one">
<p>Entre los melismas sonoros del rebalaje y las intrincadas calles del antiguo barrio del Perchel, y a la sombra espiritual de su Iglesia parroquial del Carmen, surgió en el año 2005 el sueño colectivo de un grupo de jóvenes de aquel barrio, que bajo el ánimo y el empuje del entonces párroco nuestro querido Manolo Segura- se propusieron poner en marcha la hoy conocida como Banda de Cornetas y Tambores de Nuestra Señora del Carmen del Perchel-Málaga.</p>
</div><!-- /content -->
</div>
如果我在“.fade-in {上将不透明度设置为NOT 0 不透明度:0; / *开始时看不见的东西* /“我可以看到内容,但当然这不是我想要的。
问候。
答案 0 :(得分:2)
从动画属性中删除!important
。 (并删除关键帧声明下方的“淡入淡出”。)
这是一个有效的版本:
我还编辑了动画声明的简写,以减少你的代码。
答案 1 :(得分:0)
我让它在firefox,chrome和safari中工作。这是JSFiddle链接。
@-webkit-keyframes fadeIn { 0% { opacity:0; } 100% { opacity:1; } }
@keyframes fadeIn { 0% { opacity:0; } 100% { opacity:1; } }
.fade-in {
opacity:0; /* make things invisible upon start */
-webkit-animation: fadeIn 1s ease-in;
animation: fadeIn 1s ease-in;
-webkit-animation-fill-mode: forwards;
animation-fill-mode:forwards;
}
.fade-in.one {
-webkit-animation-delay: 0.7s;
animation-delay: 0.7s;
}
希望这有帮助!