gpt4 book ai didi

html - 创建一个图层开/关的页面

转载 作者:可可西里 更新时间:2023-11-01 14:50:29 25 4
gpt4 key购买 nike

我正在尝试创建一个带有图层打开和关闭选项的页面。

有谁知道这种页面怎么做?

请告诉我,谢谢

最佳答案

这是一个 FIDDLE

<button class="on">Show All</button>
<button class="off">Hide All</button>
<button data-rel="one">One</button>
<button data-rel="two">Two</button>
<button data-rel="three">Three</button>

<div class="one layer"></div>
<div class="two layer"></div>
<div class="three layer"></div>

div {
position: absolute;
width: 500px;
height: 500px;
top: 100px;
left: 50%;
margin-left: -250px;;
opacity: 0.3;
}
button {
width: 75px;
margin-right: 15px;
}
.one {
background: url(image1.png) 110px 0 no-repeat;
background-size: 40px 40px;
}
.two {
background: url(image2.png) 250px 150px no-repeat;
background-size: 60px 60px;
}
.three {
background: url(image3.png) 410px 310px no-repeat;
background-size: 80px 80px;
}

$(function() {

$('button').click(function() {

var el = $('.'+$(this).data('rel'));

if(el.css('opacity') === '1') {
el.stop().animate({ opacity: '0.3' }, 300, 'linear');
}
else {
el.stop().animate({ opacity: '1' }, 300, 'linear');
}

});

$('.on').click(function() {
$('.layer').stop().animate({ opacity: '1' }, 300, 'linear');
});

$('.off').click(function() {
$('.layer').stop().animate({ opacity: '0.3' }, 300, 'linear');
});

});

关于html - 创建一个图层开/关的页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20551395/

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