Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对 jQuery 来说非常新,但发现了这个惊人的滚动图片库,它工作得非常好。但是,我被困住了。我的 ImageFlow 中有 5 张图片。在图像流框下,我得到了 5 张图片的名称。单击图像名称时,我希望滚动条移动到正确的图像。这有意义吗?帮助将不胜感激。
ImageFlow 似乎有一个 glideTo 功能。
您可以尝试在您的链接上调用它
$(document).ready(function() { $('.imageflow-link').click( function() { var imageId = $(this).attr('href'); $('#imageFlow').glideTo(imageId); return false; }); });
像这样的链接
<a class="imageflow-link" href="4">Test link</a>