gpt4 book ai didi

javascript - 单击按钮时隐藏边框样式

转载 作者:行者123 更新时间:2023-11-30 15:59:34 28 4
gpt4 key购买 nike

我正在做某事,我想在按下按钮时隐藏我的 border-styleborder-color,这可能吗?我有 9 次,所以 9 行。我想在我点击按钮时隐藏它们,当我再次点击时它再次显示它们。

html,
body {
/* The universe takes up all available space */
width: 100%;
height: 100%;
/* The universe is black */
background-color: black;
overflow: hidden;
}
#sun {
position: absolute;
top: 50%;
left: 50%;
height: 150px;
width: 150px;
margin-top: -40px;
margin-left: -40px;
border-color: orange;
border-width: 8px;
border-style: solid;
border-radius: 50%;
box-shadow: 0 0 64px red;
}
#earth {
position: absolute;
top: 0;
left: 50%;
height: 50px;
width: 50px;
margin-left: -25px;
margin-top: -25px;
}
#mercurius {
position: absolute;
top: 0;
left: 50%;
height: 30px;
width: 30px;
margin-left: -25px;
margin-top: -25px;
}
#venus {
position: absolute;
top: 0;
left: 50%;
height: 50px;
width: 50px;
margin-left: -25px;
margin-top: -25px;
}
#mars {
position: absolute;
top: 0;
left: 50%;
height: 40px;
width: 40px;
margin-left: -25px;
margin-top: -25px;
}
#jupiter {
position: absolute;
top: 0;
left: 50%;
height: 70px;
width: 70px;
margin-left: -25px;
margin-top: -25px;
}
#saturnus {
position: absolute;
top: 0;
left: 50%;
height: 60px;
width: 60px;
margin-left: -25px;
margin-top: -25px;
}
#uranus {
position: absolute;
top: 0;
left: 50%;
height: 60px;
width: 60px;
margin-left: -25px;
margin-top: -25px;
}
#neptunes {
position: absolute;
top: 0;
left: 50%;
height: 50px;
width: 50px;
margin-left: -25px;
margin-top: -25px;
}
#pluto {
position: absolute;
top: 0;
left: 50%;
height: 30px;
width: 30px;
margin-left: -25px;
margin-top: -25px;
}
#mercurius-orbit {
position: absolute;
top: 50%;
left: 50%;
width: 250px;
height: 250px;
margin-top: -85px;
margin-left: -85px;
border-width: 2px;
border-style: dotted;
border-color: white;
border-radius: 50%;
-webkit-animation: spin-right 9s linear infinite;
-moz-animation: spin-right 9s linear infinite;
-ms-animation: spin-right 9s linear infinite;
-o-animation: spin-right 9s linear infinite;
animation: spin-right 9s linear infinite;
}
#venus-orbit {
position: absolute;
top: 50%;
left: 50%;
width: 350px;
height: 350px;
margin-top: -135px;
margin-left: -135px;
border-width: 2px;
border-style: dotted;
border-color: white;
border-radius: 50%;
-webkit-animation: spin-right 10s linear infinite;
-moz-animation: spin-right 10s linear infinite;
-ms-animation: spin-right 10s linear infinite;
-o-animation: spin-right 10s linear infinite;
animation: spin-right 10s linear infinite;
}
#earth-orbit {
position: absolute;
top: 50%;
left: 50%;
width: 450px;
height: 450px;
margin-top: -185px;
margin-left: -185px;
border-width: 2px;
border-style: dotted;
border-color: white;
border-radius: 50%;
-webkit-animation: spin-right 11s linear infinite;
-moz-animation: spin-right 11s linear infinite;
-ms-animation: spin-right 11s linear infinite;
-o-animation: spin-right 11s linear infinite;
animation: spin-right 11s linear infinite;
}
#mars-orbit {
position: absolute;
top: 50%;
left: 50%;
width: 550px;
height: 550px;
margin-top: -235px;
margin-left: -235px;
border-width: 2px;
border-style: dotted;
border-color: white;
border-radius: 50%;
-webkit-animation: spin-right 12s linear infinite;
-moz-animation: spin-right 12s linear infinite;
-ms-animation: spin-right 12s linear infinite;
-o-animation: spin-right 12s linear infinite;
animation: spin-right 12s linear infinite;
}
#jupiter-orbit {
position: absolute;
top: 50%;
left: 50%;
width: 650px;
height: 650px;
margin-top: -285px;
margin-left: -285px;
border-width: 2px;
border-style: dotted;
border-color: white;
border-radius: 50%;
-webkit-animation: spin-right 13s linear infinite;
-moz-animation: spin-right 13s linear infinite;
-ms-animation: spin-right 13s linear infinite;
-o-animation: spin-right 13s linear infinite;
animation: spin-right 13s linear infinite;
}
#saturnus-orbit {
position: absolute;
top: 50%;
left: 50%;
width: 750px;
height: 750px;
margin-top: -335px;
margin-left: -335px;
border-width: 2px;
border-style: dotted;
border-color: white;
border-radius: 50%;
-webkit-animation: spin-right 14s linear infinite;
-moz-animation: spin-right 14s linear infinite;
-ms-animation: spin-right 14s linear infinite;
-o-animation: spin-right 14s linear infinite;
animation: spin-right 14s linear infinite;
}
#uranus-orbit {
position: absolute;
top: 50%;
left: 50%;
width: 850px;
height: 850px;
margin-top: -385px;
margin-left: -385px;
border-width: 2px;
border-style: dotted;
border-color: white;
border-radius: 50%;
-webkit-animation: spin-right 15s linear infinite;
-moz-animation: spin-right 15s linear infinite;
-ms-animation: spin-right 15s linear infinite;
-o-animation: spin-right 15s linear infinite;
animation: spin-right 15s linear infinite;
}
#neptunes-orbit {
position: absolute;
top: 50%;
left: 50%;
width: 950px;
height: 950px;
margin-top: -435px;
margin-left: -435px;
border-width: 2px;
border-style: dotted;
border-color: white;
border-radius: 50%;
-webkit-animation: spin-right 16s linear infinite;
-moz-animation: spin-right 16s linear infinite;
-ms-animation: spin-right 16s linear infinite;
-o-animation: spin-right 16s linear infinite;
animation: spin-right 16s linear infinite;
}
#pluto-orbit {
position: absolute;
top: 50%;
left: 50%;
width: 1050px;
height: 1050px;
margin-top: -485px;
margin-left: -485px;
border-width: 2px;
border-style: dotted;
border-color: white;
border-radius: 50%;
-webkit-animation: spin-right 17s linear infinite;
-moz-animation: spin-right 17s linear infinite;
-ms-animation: spin-right 17s linear infinite;
-o-animation: spin-right 17s linear infinite;
animation: spin-right 17s linear infinite;
}
@-webkit-keyframes spin-right {
100% {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes spin-right {
100% {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<h2 style="color: white; font-family: 'Roboto', sans-serif; margin-left: 50px; margin-top: 50px;">Zoom out for a better view</h2>
<!-- Right below is an image of the sun -->
<img id="sun" src="http://i.imgur.com/v1KUj9f.png">

<!-- Insert the 'earth' on the next line -->
<div id='earth-orbit'>
<img id="earth" src="http://i.imgur.com/ThNW8nI.png">
</div>

<div id='mercurius-orbit'>
<img id="mercurius" src="http://i.imgur.com/AHsmibX.png">
</div>

<div id='venus-orbit'>
<img id="venus" src="http://i.imgur.com/1Jgxg26.png">
</div>

<div id='mars-orbit'>
<img id="mars" src="http://i.imgur.com/PdoX4P0.png">
</div>

<div id='jupiter-orbit'>
<img id="jupiter" src="http://i.imgur.com/qF8mGmG.png">
</div>

<div id='saturnus-orbit'>
<img id="saturnus" src="http://i.imgur.com/CsEIxeq.png">
</div>

<div id='uranus-orbit'>
<img id="uranus" src="http://i.imgur.com/aIbM21j.png">
</div>

<div id='neptunes-orbit'>
<img id="neptunes" src="http://i.imgur.com/joA0iCp.png">
</div>

<div id='pluto-orbit'>
<img id="pluto" src="http://i.imgur.com/qQvhUuF.png">
</div>

<button>Click</button>

最佳答案

你可以试试这个..

CSS:

.borderless {
border-width: 0 !important;
}

JS:

$('#btn').click(function() {
$('#mercurius-orbit').toggleClass('borderless');
//... for all objects with borders
});

你的按钮:

<button id="btn">Click</button>

Here 是一个工作示例。

关于javascript - 单击按钮时隐藏边框样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37969821/

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