gpt4 book ai didi

javascript - 显示更大的初始图像

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

我在页面加载时显示第一个较大的图像,但我想在单击缩略图时显示更大的图像,最初我不想在加载页面时显示任何更大的图像。最初只应显示缩略图。

这是尝试过的链接:

http://jsfiddle.net/L7yKp/37/

最佳答案

听起来你想要的是这样的:

http://jsfiddle.net/L7yKp/38/

$("#panel img").hide(); //<= remove the :not(first-child) filter

$("#thumbs .UiUx3DSSVFlow").click(function(){
getIndex = $(this).index();
$("#thumbs .clicked").removeClass('clicked');
$("#panel img").fadeOut('fast').eq(getIndex).fadeIn();
$(this).addClass('clicked');
});

//$("#thumbs .UiUx3DSSVFlow:first").click(); //<= don't simulate the first click
$(['next','prev']).each(function(){
var that=this;
$('.'+that).click(function(){
$('#thumbs .clicked')[that]().click();
});
});

关于javascript - 显示更大的初始图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12153438/

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