parallax(視差) 奥が遅く、手前が早く・・視覚効果
ページをスクロールする時、手前と奥とでスクロールの速度に差をつけて奥行きや立体感を表現する。
参考リンク:https://lpeg.info/html/parallax_basic.html
js候補その3rellax :https://dixonandmoe.com/rellax/
背面:background1
前面:background2
背面:background1
前面:background2
//perspective
.parallax {
position: relative; perspective: 1px;
height: 400px;
overflow-x: hidden; overflow-y: auto;
font-size: 200%;}
.parallax_layer { position: absolute;
top: 0; right: 0;bottom: 0; left: 0; padding: 400px 0; }
.parallax_layerbase { transform: translateZ(0); }
.parallax_layerback { transform: translateZ(-1px); }
.title { position: absolute; left: 50%; top: 50%;
transform: translate(-50%, -50%);}