gpt4 book ai didi

javascript - jquery大图缩略图问题

转载 作者:行者123 更新时间:2023-11-28 09:15:24 24 4
gpt4 key购买 nike

在我看来,我使用它在每条记录上将图像显示为缩略图

<img src="<?php echo Router::url("**../files/images/small/**".$ad["Advertisement"]["advertisement_image"],false)?>

缩略图保存在小目录文件夹中,相同的大图像存储在大目录文件夹中。

你能告诉我如何获得相同缩略图的大图像,因为我使用 jQuery 工具提示进行图像的大预览,我如何在对于上面的代码,我应该在 alt 中给出什么。

<img src="hills-thumb.jpg" alt="hills.jpg" rel="Hills Image" />

JS:

$(document).ready(function() {
$("#thumbnail img").hover(function(e) {
$("#large").css("top", (e.pageY + 5) + "px")
.css("left", e.pageX + 5) + "px")
.html("<img src=" + $(this).attr("alt") + " alt='Large Image' /><br/>" + $(this).attr("rel"))
.fadeIn("slow");
},
function() {
$("#large").fadeOut("fast");
});
});

请帮忙

谢谢

最佳答案

看看这个使用 jquery 工具提示进行图像预览。

http://cssglobe.com/easiest-tooltip-and-image-preview-using-jquery/

关于javascript - jquery大图缩略图问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15727330/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com