IE10上的Bootstrap Slider和Keyframes - CSS3

时间:2013-05-08 10:40:04

标签: css3 twitter-bootstrap slider internet-explorer-10 css-animations

我使用关键帧为网站的功能滑块设置动画。

旋转木马工作正常。动画也是如此,除了IE10。

Keyframne - 这将决定向下移动。

@-webkit-keyframes downup { from  { opacity:0; top:500px;}to {top:0;opacity:.9;}}
@-moz-keyframes downup { from  { opacity:0; top:500px;}to{top:0;opacity:.9;}} 
@keyframes downup{ from  { opacity:0; top:500px;}to {top:0;opacity:.9;}}

.updown {
position: relative; 
opacity:0;
animation:downup 1s forwards;
-webkit-animation:mymove 1s forwards;
-moz-animation:mymove 1s forwards;}

IE10显示循环中的第一个第4个内容,但是当他第一次重新开始时,没有显示幻灯片信息.upup。您可以在此处检查构建中的滑块:http://ndsim.esec.pt/nova/index.html

任何帮助都会非常棒。

现在正在工作。我有一些引导冲突类......将它们分开,现在它的工作......就像这样做了

<div id=”myCarousel” class=”carousel slide fade-in one”>

并改为

<div id=”myCarousel” class=”carousel slide”>
<div class=”fade-in one”>
不知道发生了什么事,但是某种IE冲突。

0 个答案:

没有答案