gpt4 book ai didi

javascript - 更改图库功能

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

我怎样才能在下面的代码中进行这些更改?

  • 显示 <div id="main"> 的缩略图标题当我们点击时,缩略图。
  • <div id="main"> 下方显示缩略图标题
  • 为“blank.gif”设置 URL 缩略图(我的意思是当我们单击缩略图时,<div id="main"> 也获取该缩略图的 URL。我想进行此更改以全屏使用任何图像)<

代码在这里:

<div id="main">
<p><img src="blank.gif" /></p>
</div>

$(".productthumbs img").click(function() {
// calclulate large image's URL based on the thumbnail URL (flickr specific)
var url = $(this).attr("src");
// get handle to element that wraps the image and make it semitransparent
var wrap = $("#main").fadeTo("medium", 0.5);
// the large image from flickr
var img = new Image();
// call this function after it's loaded
img.onload = function() {
// make wrapper fully visible
wrap.fadeTo("fast", 1);
// change the image
wrap.find("img").attr("src", url);
};
// begin loading the image from flickr
img.src = url;
// when page loads simulate a "click" on the first image
}).filter(":first").click();

最佳答案

我得到了我的答案,把它放在这里以供任何有相同问题的人...

<div id="main">
<p><img src="blank.gif" /></p>

<div id="title">
<a href="about:blank"><h5>...</h5> </a>
</div>
</div>

并添加这些行:

wrap.find('h5').html(title);
wrap.find("a").eq(1).attr("href", url);

之后:

    wrap.find("img").attr("src", url);

祝你好运。

关于javascript - 更改图库功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8740597/

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