jquery循环寻呼机功能的问题-页面不显示
使用cycle 2.7xi没有任何问题,但是我必须升级到jquery Cycle 2.88,因为2.7x不支持cleartypeNoBg。下面是我正在使用的代码。正如我所说,它以前有效。
$('#hero').cycle({
fx: 'scrollHorz',
speed: 2000,
timeout: 12000,
next: '#next',
prev: '#prev',
pager: '#pager',
pagerAnchorBuilder: pagerFactory
});
function pagerFactory(idx, slide) {
var s = idx > 2 ? ' style="display:none"' : '';
return '<li'+s+'><a href="#" '+s+'><img src="images/nav/invisi.png" height="16px" width="16px" /></a></li>';
};
<ul id="pager"></ul>
任何人可以提供的任何帮助将不胜感激。
--编辑--
我已经解决了问题。都是风格
Using cycle 2.7x i didn't have any problem with this however I had to upgrade to jquery cycle 2.88 because 2.7x doesn't support cleartypeNoBg. Below is the code I am using. As I say it worked before.
$('#hero').cycle({
fx: 'scrollHorz',
speed: 2000,
timeout: 12000,
next: '#next',
prev: '#prev',
pager: '#pager',
pagerAnchorBuilder: pagerFactory
});
function pagerFactory(idx, slide) {
var s = idx > 2 ? ' style="display:none"' : '';
return '<li'+s+'><a href="#" '+s+'><img src="images/nav/invisi.png" height="16px" width="16px" /></a></li>';
};
<ul id="pager"></ul>
Any help anyone can provide will be much appreciated.
--EDIT--
I have solve the problem. It was all in the styles
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论