大阪から日本全国のご依頼に対応。WEBサイト制作ならアトリエ涼。

お知らせ/ブログ

※当サイトは、アフェリエイト広告を利用しています。

2023.07.28

制作メモ

【CSSで作成】キラキラボタン

【CSSで作成】キラキラボタン

キラキラ光るボタンの制作メモです。
CSSのみで実装しています。

 

キラキラボタン

HTML

<p class="link-button shine"><a href="#">ボタン</a></p>

CSS

p.link-button {
  width: 250px;
  text-align: center;
  margin: 0 auto;
}

p.link-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  padding: 10px;
  color: #fff;
  background: linear-gradient(90deg, #1fbde1, #4bbbd4);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  text-decoration: none;
}

p.link-button a:hover {
  color: #fff;
  opacity: 1;
  background: #666;
}
/*キラキラアニメーション*/
.shine a {
position: relative;
overflow: hidden; /*範囲外の光を隠す*/
}
.shine a:before {
content: "";
position: absolute;
top: -180px;
left: 0;
width: 30px;
height: 100%;
background: #fff;
animation: shine 3sease-in-outinfinite;
}

@keyframes shine {
0% {
transform: scale(0) rotate(45deg);
opacity: 0;
}
80% {
transform: scale(0) rotate(45deg);
opacity: 0.5;
}
81% {
transform: scale(4) rotate(45deg);
opacity: 1;
}
100% {
transform: scale(50) rotate(45deg);
opacity: 0;
}
}

「.shine a」のところの「overflow: hidden;」が結構大事で、
ない場合、ページ全体にキラキラがかかってしまいますので
作成の際は気をつけていただければと思います。