html - CSS display inline items briefly show up as list-items when loading page -
I have a jcarousel that displays item inline. On loading, the items appear first (list) and then go to the normal inline position.
I have found this on many websites and have trouble with it.
Is there anything like this that can be done about this?
Thanks
You can change the CSS in the parent div or whatever container Your carousel is:
# jcDiv {visibility: hidden; Height: 200 pixels; / * Adjust what should be your * / overflow: hidden; }
and onload (window, not document):
$ (window) .load (function () {$ ("# jcDiv"). Css ({visibility: 'view'});});
Comments
Post a Comment