gpt4 book ai didi

javascript - 切换具有多个值的选择器 CSS

转载 作者:太空宇宙 更新时间:2023-11-04 01:02:20 25 4
gpt4 key购买 nike

这是我的:

具有多行的 SVG。这些有类型作为 CSS 类。例如:.pen1 .pen2 .pen3 .pen4。和.special

每一行都有前四行之一,并且可以有 .spcial!还有一些.special only lines.

可以使用按钮激活和停用这些类中的每一个。

我的问题是:

(A 行有 .pen1,B 行有 .pen1 .special,C 行有 .pen2,D 行有 .pen2 .special)

程序如下:

  • 1) 我点击 .pen1 的按钮:A 和 B 消失了
  • 2) 我点击 .special 的按钮:D 消失,B 出现
  • 3) 我点击 .pen1 的按钮:A 出现 & B 消失

但我需要两者都在 2) 中消失,然后两者都应在 3) 中重新出现。

我目前的解决方案是,如果我按下 .pen1 的按钮,我会设置一个标志,表明它已被按下,并在我按下 .special 时测试这个标志 --> 这有效,但前提是只有一个类有自己的和.特殊类

这是我现在的代码:

用于特殊切换:

if (this._pen1|| this._pen2|| this.pen3|| this.pen4 ){
if (this.special) {
if (this.pen1) {
[...].find('svg .' + _PENSTYLES.special).not('.' + _PENSTYLES.pen1).hide(0);
}
if (this.pen2) {
[...].find('svg .' + _PENSTYLES.special).not('.' + _PENSTYLES.pen2).hide(0);
}
if (this.pen3) {
[...].find('svg .' + _PENSTYLES.special).not('.' + _PENSTYLES.pen3).hide(0);
}
if (this.pen4) {
[...].find('svg .' + _PENSTYLES.special).not('.' + _PENSTYLES.pen4).hide(0);
}
} else {
if (this.pen1) {
[...].find('svg .' + _PENSTYLES.special).not('.' + _PENSTYLES.pen1).show(0);
}
if (this.pen2) {
[...].find('svg .' + _PENSTYLES.special).not('.' + _PENSTYLES.pen2).show(0);
}
if (this.pen3) {
[...].find('svg .' + _PENSTYLES.special).not('.' + _PENSTYLES.pen3).show(0);
}
if (this.pen4) {
[...].find('svg .' + _PENSTYLES.special).not('.' + _PENSTYLES.pen4).show(0);
}
}
} else {
[...].find('svg .' + _PENSTYLES.special).toggle(0);
}
this.special= !this.special;

pen1-4 切换:

    if (this.special) {
[...].find('svg .' + _PENSTYLES.pen1).not('.' + _PENSTYLES.special).toggle(0);
} else {
[...].find('svg .' + _PENSTYLES.pen1).toggle(0);
}
this.pen1= !this.pen1;

我希望有人能帮助我解决多行问题。因为现在他们 pen2 覆盖 pen1 并显示/隐藏其他人排除的所有内容。

最佳答案

以下是我认为您正在寻找的入门内容的简化。运行该代码段以查看其工作情况。

var hidden = [];

function toggle(classname) {
if (hidden.indexOf(classname) > -1) {
hidden.splice(hidden.indexOf(classname), 1);
getElements(classname).forEach(function(ele) {
ele.classList.remove("hidden");
});
} else {
hidden.push(classname);
}
hidden.forEach(function(hide) {
getElements(hide).forEach(function(ele) {
ele.classList.add("hidden")
});
})
}

function getElements(classname) {
return Array.from(document.getElementsByClassName(classname));
}
html {
font-family: sans-serif;
}

.root {
display: flex;
}

.root>div {
flex: 0 0 80px;
}
button{
width: 70px;
}

svg line {
stroke-width: 2;
}

.special {
stroke: red;
stroke-dasharray: 5;
}

.pen1 {
stroke: blue;
}

.pen2 {
stroke: green;
}

.pen3 {
stroke: goldenrod;
}

.pen4 {
stroke: DarkOrchid;
}

text {
font-size: 14px;
}

.hidden {
display: none;
}
<div class="root">
<div>
<button onclick="toggle('pen1')">.pen1</button>
<button onclick="toggle('pen2')">.pen2</button>
<button onclick="toggle('pen3')">.pen3</button>
<button onclick="toggle('pen4')">.pen4</button>
<button onclick="toggle('special')">.special</button>
</div>

<svg width="400" height="200" viewBox="0 0 400 200">
<rect width="400" height="200" fill="#efefef" />
<line class="pen1" y1="20" y2="20" x1="0" x2="300" />
<line class="pen2" y1="40" y2="40" x1="0" x2="300" />
<line class="pen3" y1="60" y2="60" x1="0" x2="300" />
<line class="pen4" y1="80" y2="80" x1="0" x2="300" />
<line class="pen1 special" y1="100" y2="100" x1="0" x2="300" />
<line class="pen2 special" y1="120" y2="120" x1="0" x2="300" />
<line class="pen3 special" y1="140" y2="140" x1="0" x2="300" />
<line class="pen4 special" y1="160" y2="160" x1="0" x2="300" />
<line class="special" y1="180" y2="180" x1="0" x2="300" />
<text x="310" y="20" alignment-baseline="middle">.pen1</text>
<text x="310" y="40" alignment-baseline="middle">.pen2</text>
<text x="310" y="60" alignment-baseline="middle">.pen3</text>
<text x="310" y="80" alignment-baseline="middle">.pen4</text>
<text x="310" y="100" alignment-baseline="middle">.pen1 .special</text>
<text x="310" y="120" alignment-baseline="middle">.pen2 .special</text>
<text x="310" y="140" alignment-baseline="middle">.pen3 .special</text>
<text x="310" y="160" alignment-baseline="middle">.pen4 .special</text>
<text x="310" y="180" alignment-baseline="middle">.special</text>
</svg>
</div>

关于javascript - 切换具有多个值的选择器 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52990715/

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