使用 jcarousel,如何让图像 alt 显示在外部 div#caption 中
我正在使用: http://sorgalla.com/projects/jcarousel/#Configuration
我在将其加载到站点之前,我正在本地实现此功能以证明其功能。我当前的设置是:
<script type="text/javascript">
function mycarousel_initCallback(carousel) {
jQuery('#mycarousel-next').bind('click', function() {
carousel.next();
return false;
});
jQuery('#mycarousel-prev').bind('click', function() {
carousel.prev();
return false;
});
};
jQuery(document).ready(function() {
jQuery("#mycarousel").jcarousel({
scroll: 1,
visible: 1.1,
initCallback: mycarousel_initCallback,
buttonNextHTML: null,
buttonPrevHTML: null,
itemLoadCallback: trigger
});
});
function trigger(carousel, state)
{
$("#counter").html(carousel.first);
}
</script>
<div id="clip">
<ul id="mycarousel">
<li><img src="images/bda_1.jpg" alt="Alt Tag 1" width="638" height="358"/></li>
<li><img src="images/bda_2.jpg" alt="Alt Tag 2" width="638" height="358" /></li>
<li><img src="images/bda_3.jpg" alt="Alt Tag 3" width="638" height="358" /></li>
<li><img src="images/bda_1.jpg" width="638" height="358" /></li>
</ul>
</div>
<a href="#" id="mycarousel-prev">« Prev</a>
<a href="#" id="mycarousel-next">« NEXT</a>
<div id="counter"></div>
<div id="caption"></div>
我知道我可以使用回调,但我的 js/jquery 适合初学者来完成它。我只是想拉出 alt 标签并将其显示在 div#caption 中,
感谢您的帮助。
I am using: http://sorgalla.com/projects/jcarousel/#Configuration
And I am implementing this locally to prove functionality before I load it into a site. My current setup is:
<script type="text/javascript">
function mycarousel_initCallback(carousel) {
jQuery('#mycarousel-next').bind('click', function() {
carousel.next();
return false;
});
jQuery('#mycarousel-prev').bind('click', function() {
carousel.prev();
return false;
});
};
jQuery(document).ready(function() {
jQuery("#mycarousel").jcarousel({
scroll: 1,
visible: 1.1,
initCallback: mycarousel_initCallback,
buttonNextHTML: null,
buttonPrevHTML: null,
itemLoadCallback: trigger
});
});
function trigger(carousel, state)
{
$("#counter").html(carousel.first);
}
</script>
<div id="clip">
<ul id="mycarousel">
<li><img src="images/bda_1.jpg" alt="Alt Tag 1" width="638" height="358"/></li>
<li><img src="images/bda_2.jpg" alt="Alt Tag 2" width="638" height="358" /></li>
<li><img src="images/bda_3.jpg" alt="Alt Tag 3" width="638" height="358" /></li>
<li><img src="images/bda_1.jpg" width="638" height="358" /></li>
</ul>
</div>
<a href="#" id="mycarousel-prev">« Prev</a>
<a href="#" id="mycarousel-next">« NEXT</a>
<div id="counter"></div>
<div id="caption"></div>
I know I can use a callback but my js/jquery is to beginner to get it done. I simply want to pull the alt tag out and display it in the div#caption
thanks for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 jcarousel 主循环(我在你的代码中没有看到)中,你会这样:
COUNTER 的值来自哪里,你必须在脚本中找到。如果这个函数有回调,你可以把它放在那里。
In the jcarousel main loop (which I don't see in your code) you'd so this:
Where the value of COUNTER comes fom you'll have to find in the script. If there's a callback for this function you could put it there.