Jssor Slider not working internet explorer

若如初见. 提交于 2019-12-13 06:56:36

问题


The jssor slide works fine in all browsers (Chrome, FF and Safari) except IE(11). The banner doesn't show the images (all is black) and only shows the loading.gif image frozen. You can see the website here.

I've copied the exactly files and code from the demo content...

Suggestions? ;)


回答1:


IE can read 'width: 829px;' instead of 'width: 829'

Please replace,

<div id="slider1_container" style="position: relative; top: 0px; left: 0px; width: 829; height: 114px; overflow: hidden; ">

with

<div id="slider1_container" style="position: relative; top: 0px; left: 0px; width: 829px; height: 114px; overflow: hidden; ">


来源:https://stackoverflow.com/questions/28301782/jssor-slider-not-working-internet-explorer

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!