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.
我使用 Dynamic Drive 中的 motiongallery.js(CMotion Image Gallery)创建了这个滑块。
我正在尝试使用 jQuery Capty 将 alt 或标题文本设置为标题,但是它不能正确显示(请参见此处)。
有没有人对如何使这项工作有任何提示或建议?
将以下类添加到您的 CSS 文件中。那必须解决整个问题。
.capty-wrapper{display:inline-block;}
问题是<a>并且<img>是内联元素。Capty 使用<div>s 来渲染其标题,这是一个块元素,会打乱画廊的布局。
<a>
<img>
<div>
上面的 CSS 使包含 capty 的 div 成为一个内联元素。
还要考虑 Billy Moat 的评论和 $('.caption').capty(); 用于向图像元素添加标题的用途,因为 id 应该是唯一的。
$('.caption').capty();