admin管理员组文章数量:1387328
On researching the question "How to animate height change on Bootstrap 3 Carousel" I found this answer, however it doesn't have any effects on my bootstrap carousel. I can't ment yet and ask for clarification there, therefore a new Question.
The solution suggested there is
function bsCarouselAnimHeight()
{
$('.carousel').carousel({
interval: 5000
}).on('slide.bs.carousel', function (e)
{
var nextH = $(e.relatedTarget).height();
$(this).find('.active.item').parent().animate({ height: nextH }, 500);
});
}
But as I said, without any effect. Maybe I should modify any selectors in the Javascript in my case?
Update:
I updated the fiddle so it's actually showing the problem.
All ideas are appreciated! Thanks.
On researching the question "How to animate height change on Bootstrap 3 Carousel" I found this answer, however it doesn't have any effects on my bootstrap carousel. I can't ment yet and ask for clarification there, therefore a new Question.
The solution suggested there is
function bsCarouselAnimHeight()
{
$('.carousel').carousel({
interval: 5000
}).on('slide.bs.carousel', function (e)
{
var nextH = $(e.relatedTarget).height();
$(this).find('.active.item').parent().animate({ height: nextH }, 500);
});
}
But as I said, without any effect. Maybe I should modify any selectors in the Javascript in my case?
Update:
I updated the fiddle so it's actually showing the problem.
All ideas are appreciated! Thanks.
Share Improve this question edited Jun 20, 2020 at 9:12 CommunityBot 11 silver badge asked May 9, 2014 at 12:16 psteinweberpsteinweber 81312 silver badges21 bronze badges1 Answer
Reset to default 7Your code is fine. You're just not calling function bsCarouselAnimHeight()
anywhere so none of it is firing.
You can either take it out of the function declaration
http://jsfiddle/4HDBe/3/
or call the function at some point.
http://jsfiddle/4HDBe/4/
本文标签: javascriptAnimate height change on Bootstrap 3 CarouselStack Overflow
版权声明:本文标题:javascript - Animate height change on Bootstrap 3 Carousel - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744550668a2612165.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论