【发布时间】:2015-09-14 21:41:56
【问题描述】:
我想将 CSS 代码转换为 jQuery(Bootstrap carousel animate)。因为我有一个客户想要一个与 IE8 兼容的网站,而转换属性不是。
所以我尝试将 CSS 代码转换为 jQuery,但我是一个真正的菜鸟。
更多,我希望以前的“.item”比新的“.item”稍稍落后
if($(".carousel.vertical").is(".active"))
$(this).animate({top:0});
});
if($(".carousel.vertical").is(".next"))
$(this).animate({top:400px});
});
if($(".carousel.vertical").is(".prev"))
$(this).animate({top:-400px});
});
等等……
【问题讨论】:
标签: jquery twitter-bootstrap carousel