作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图在我的网页上应用对我网页内容的淡入淡出效果,但我的内容只是“隐藏”而不是使淡入淡出效果。
这是我正在使用的 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;/* 让事情在开始时不可见 */"我可以看到内容,但当然这不是我要找的。
问候。
最佳答案
从您的动画属性中删除 !important
。 (同时删除关键帧声明下方的“淡入”。)
这是一个工作版本:
我还编辑了动画声明的简写以减少您的代码。
关于javascript - CSS 动画淡入效果似乎不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24774720/
我是一名优秀的程序员,十分优秀!