图像悬停的解决方案

发布于 2024-12-11 22:19:46 字数 351 浏览 0 评论 0原文

我有这个标记:

<a href="assets/1.jpg" class="lightbox" rel="group1">
<img src="images/albums/album1/thumbs/1.jpg" /></a>

对于每个缩略图,我都有一个悬停图像(请参阅此处的缩略图 )

普通图像是灰度图像,悬停图像是彩色图像。 我的问题是如何正确添加悬停图像标记,因为我的图库中有大约 40 张图像? 谢谢!

I have this markup:

<a href="assets/1.jpg" class="lightbox" rel="group1">
<img src="images/albums/album1/thumbs/1.jpg" /></a>

And for each thumbnail I have an hover image (see the thumbnail images here
)

Normal image is the grayscale and hovered is the colored image.
My question is how to add the hover image markup properly because I have something like 40 images in my gallery?
Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

陌上青苔 2024-12-18 22:19:46

您应该在 onmousover 事件中为每个图像使用 Javascript(Jquery 或自定义代码,如您所愿)。将图像源作为参数传递,然后简单地将 _hover.jpg 附加到源中。在 onmouseout 事件中,您删除尾部,仅此而已。

请记住,您必须以相同的结尾命名每个悬停图像(在我的示例中为“_hover.jpg”),并将图像 id 设置为其基本名称(不带 .fileformat 等)

(您可以使用 JQuery 定义其他属性而不是 id)

是这样的:

<a href="dummy.html">
    <img src="images/basename.png" id="basename"
         onmouseover="showHint(this)"   
         onmouseout="backHint(this)" />
</a>

Javascript 如下所示:

function showHint(img) {
    img.src = "images/" + img.id + "_hover.png";
}

function backHint(img) {
    img.src = "images/" + img.id + ".png";
}

You should use Javascript (Jquery or custom code, as you wish) for each image, on the onmousover event. Pass the image source as parameter, and simply append for example a _hover.jpg to the source. On the onmouseout event you remove the tailpice, and thats all.

Just remember, you have to name every hover image with the same ending ("_hover.jpg" in my example), and set the images id to their base name (without the .fileformat and etc)

(you could use JQuery to define additional properties instead of the id)

Something like this:

<a href="dummy.html">
    <img src="images/basename.png" id="basename"
         onmouseover="showHint(this)"   
         onmouseout="backHint(this)" />
</a>

And the Javascript would be something like below:

function showHint(img) {
    img.src = "images/" + img.id + "_hover.png";
}

function backHint(img) {
    img.src = "images/" + img.id + ".png";
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文