0
2

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.

【初心者でもわかる】cssで水面に反射したような鏡面反射を作成する方法

Posted at

どうも7noteです。鏡面反射の作り方。

水面に反射したように、画像の下に水面に反射したような画像をおいて鏡面反射を作ります。

見本

image01.png

鏡面反射のソースの書き方

index.html
<div class="image">
  <img src="sample.jpg">
</div>
<!-- ↓反射用↓ -->
<div class="spreflect">
  <img src="sample.jpg">
</div>
style.css
.image {
  margin-bottom: 1px; /* 反射するとこの隙間 */
}

.spreflect {
  transform: scale(1, -1); /* 上下反転 */
  position: relative;  /* 基準位置とする */
}
.spreflect::before {
  content: "";         /* 疑似要素に必須 */
  width: 100%;         /* 幅いっぱい */
  height: 100%;        /* 高さいっぱい */
  display: block;      /* 高さを指定するためにブロック要素にする */
  background: linear-gradient(#fff 30%, rgba(255,255,255,0) 100%); /* 徐々に透明にする */
  position: absolute;  /* 相対位置に指定 */
  top: 0;              /* 上から0pxの位置に指定 */
  left: 0;             /* 左から0pxの位置に指定 */
}

まとめ

同じような方法でbox-reflectというプロパティを使って要素を反転させることができます。

https://shanabrian.com/web/css3/box-reflect.php
box-reflectを使った場合は「Safari、Chrome」にしか対応できないので注意!

おそまつ!

~ Qiitaで毎日投稿中!! ~
【初心者向け】WEB制作のちょいテク詰め合わせ

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?