I am building an admin dashboard with Bootstrap 3, and require a "View More" button to un-collapse some content. This works fine with the following code, however on page load we see the collapse content momentarily whilst the animation takes place.
A fiddle can be found here: /
And I initialise the collapse with the following code:
<script src="//ajax.googleapis/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".collapse").collapse();
});
</script>
Does anyone know how to remove that flicker of un-hidden content?
Note: This question refers to Bootstrap 2, and the problem was never pletely fixed with a correct solution anyway.
I am building an admin dashboard with Bootstrap 3, and require a "View More" button to un-collapse some content. This works fine with the following code, however on page load we see the collapse content momentarily whilst the animation takes place.
A fiddle can be found here: http://jsfiddle/sSNG4/
And I initialise the collapse with the following code:
<script src="//ajax.googleapis./ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".collapse").collapse();
});
</script>
Does anyone know how to remove that flicker of un-hidden content?
Note: This question refers to Bootstrap 2, and the problem was never pletely fixed with a correct solution anyway.
Share Improve this question edited May 23, 2017 at 12:02 CommunityBot 11 silver badge asked Mar 11, 2014 at 14:01 mpdcmpdc 3,5705 gold badges30 silver badges49 bronze badges1 Answer
Reset to default 6http://getbootstrap./javascript/#collapse-usage
- In your HTML, change
class="collapse in"
toclass="collapse"
. Thein
class indicates that it's "open". - Remove the JavaScript pletely. The
data-
attributes will tell Bootstrap to initialize the collapsible div automatically.
http://jsfiddle/mblase75/YyKhH/
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745168732a4614793.html
评论列表(0条)