图像悬停的解决方案
我有这个标记:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该在 onmousover 事件中为每个图像使用 Javascript(Jquery 或自定义代码,如您所愿)。将图像源作为参数传递,然后简单地将 _hover.jpg 附加到源中。在 onmouseout 事件中,您删除尾部,仅此而已。
请记住,您必须以相同的结尾命名每个悬停图像(在我的示例中为“_hover.jpg”),并将图像 id 设置为其基本名称(不带 .fileformat 等)
(您可以使用 JQuery 定义其他属性而不是 id)
是这样的:
Javascript 如下所示:
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:
And the Javascript would be something like below: