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

标签 javascript jquery html css

我正在做某事,我想在按下按钮时隐藏我的 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/

相关文章:

javascript - 当计时器到达某个点时不改变颜色

javascript - 如何将 ="date"类型的 ios 5 HTML5 输入设置为当前日期和时间?

javascript - 使单击时单选按钮的焦点不可见,但焦点应在键盘导航上可见

jQuery .ajax .load .get x(h)tml 相关错误 ("mismatched tag, expected: </br>")

html - CSS 菜单在打开时覆盖其他内容

html - ASP.Net MVC SelectList 不是 'Selecting' 正确项目

javascript - 通过其子项获取项目 ID (vanilla JS)

javascript - 使用 $.post 对用户进行身份验证以返回自定义错误/成功消息

javascript - 响应式下拉菜单在调整大小之前不会激活

JQuery - 弹出显示父跨度