1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

HTML/CSSで日向坂46のロゴを描画する

Last updated at Posted at 2020-12-09

日向坂のロゴとは

これです!
Qiita

結果

See the Pen eYddvgm by Esaki Kota (@esafla) on CodePen.

こだわり点

1.角度は46度!

ロゴを作るにあたって調べたところ、三角形の角度はこのようになっているそうなので、これに乗っ取って実装します。
Qiita

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 207.10606275811px 200px;
}

三角形の辺の長さから角度を調整したのですが、もっとスマートな方法がありそうです。。。

終わりに

普段cssを適当にやってしまいがちだったので、変な実装になっているかもしれません。
こんなやり方がいいよ!みたいなのがあればコメント待っています!

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?