Jssor Slider not working internet explorer

2019-09-01 08:03发布

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条回答
劳资没心,怎么记你
2楼-- · 2019-09-01 08:48

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; ">
查看更多
登录 后发表回答