使用 jcarousel,如何让图像 alt 显示在外部 div#caption 中

发布于 2024-11-30 11:58:49 字数 1611 浏览 0 评论 0原文

我正在使用: 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">&laquo; Prev</a>
 <a href="#" id="mycarousel-next">&laquo; 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

世界和平 2024-12-07 11:58:49

在 jcarousel 主循环(我在你的代码中没有看到)中,你会这样:

$('#caption').html($('mycarousel').find('img').eq(COUNTER).attr('alt'))

COUNTER 的值来自哪里,你必须在脚本中找到。如果这个函数有回调,你可以把它放在那里。

In the jcarousel main loop (which I don't see in your code) you'd so this:

$('#caption').html($('mycarousel').find('img').eq(COUNTER).attr('alt'))

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文