gpt4 book ai didi

jquery - 全宽 Accordion

转载 作者:太空宇宙 更新时间:2023-11-04 11:42:26 27 4
gpt4 key购买 nike

我做了一个非常简单的水平全宽 Accordion ,但我遇到了一个错误 - 它的最后一部分在折叠过程中下降了。

这是我的代码:https://jsfiddle.net/trzxs3u1/

它可能来自同时动画的关闭和打开,但我找不到我做错了什么:

$( document ).ready(function() {
var qtySect = 3 - 1;
var unselectedWidth = 40 / qtySect +"%";
var selectedWidth = 60+"%";
$("div ul li:first-child").addClass('selected');
$("div ul li").not(':first-child').addClass('unselected');
$(".unselected").css("width", unselectedWidth);
$(".selected").css("width",selectedWidth);
$("div ul li").click(function() {
if ($(this).hasClass("unselected")){
$(this).animate( { width: selectedWidth }, { queue: false, duration: 300, easing: "linear" } )
$(".selected").animate( { width: unselectedWidth }, { queue: false, duration: 300, easing: "linear" } );
$(".selected").addClass("unselected").removeClass("selected");
$(this).addClass("selected").removeClass("unselected");
}
});
});

你知道为什么要这样做吗?

最佳答案

问题在于你使用了整个 100% 的主体 Canvas 只是

var unselectedWidth = 40/qtySect +"%";减少到 var unselectedWidth = 39/qtySect +"%";

否则你可以将 60% 的部分减少到 59% 因为 html 元素带来了一些填充,其他方法是将 html 的所有元素设置为填充 0(这不是好的)我更喜欢第一个。 ..

$(function () {
//Remove 1 element(selected), and find the width of the rest(unselected)
var qtySect = 3 - 1;
var unselectedWidth = 39 / qtySect +"%"; /// made a change
var selectedWidth = 60+"%";

//set initial widths
$("div ul li:first-child").addClass('selected');
$("div ul li").not(':first-child').addClass('unselected');
$(".unselected").css("width", unselectedWidth);
$(".selected").css("width",selectedWidth);
//click animate
$("div ul li").click(function() {
if ($(this).hasClass("unselected")){
$(this).animate( { width: selectedWidth }, { queue: false, duration: 300, easing: "linear" } )
$(".selected").animate( { width: unselectedWidth }, { queue: false, duration: 300, easing: "linear" } );
$(".selected").addClass("unselected").removeClass("selected");
$(this).addClass("selected").removeClass("unselected");
}
});
});
.wrapper ul {
overflow:hidden;
padding: 0;
margin: 0;
}

.wrapper li {
display: block;
float:left;
padding: 0;
margin: 0;
}

.pane1 {
background-color: red;
}

.pane2 {
background-color: green;
}

.pane3 {
background-color: blue;
}

.pane4 {
background-color: yellow;
}
<div class="wrapper">
<ul>
<li class="pane1">Pane #1</li>
<li class="pane2">Pane #2</li>
<li class="pane3">Pane #3</li>
</ul>
</div>

关于jquery - 全宽 Accordion ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31223800/

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