LoginSignup
6
7

More than 5 years have passed since last update.

CSSでリロード(更新)ボタンを作る。

Posted at

sample.png


<div class="reload blue" onclick="window.location.reload();"></div>


.reload{
  position: relative;
  width: 100px;
  height: 100px;
  border: 10px solid;
  border-right-color: transparent;
  border-radius: 100%;
  box-sizing: border-box;
}

.reload:before{
  position: absolute;
  top: 18px;
  right: -10px;
  content: "";
  height: 50%;
  border: 20px solid transparent;
  border-top: 30px solid;
  background: transparent;
  transform-origin: left top;
  transform: rotate(-40deg);
  box-sizing: border-box;
}

.blue{
  color: blue;
}

6
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
7