Nivo Slider not working with IE7

廉价感情. 提交于 2019-12-01 20:53:23

I had the same issue with NivoSlider and IE7, turns out it was an issue with the "pauseTime" attribute.

Move it to the end of your jQuery function and remove the comma. After doing this the slider worked fine in IE7.

Original:

pauseTime: 4500, // How long each slide will show
pauseOnHover: true, // Stop animation while hovering

Edited

pauseOnHover: true, // Stop animation while hovering
pauseTime: 4500 // How long each slide will show

See the support forums for Dev7Studios to read more.

I have found basically what Tyce Clee found - just make sure there is no comma at the end of the last parameter. I just felt the need to post because that applies to any parameter, not just pause time.

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