1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| .scenes { position: relative; height: 416px; outline: 2px solid #ccc; }
.scene-1, .scene-2 { position: absolute; inset: 0; background-size: cover; }
.scene-1 { background-image: url(1.jpg); }
.scene-2 { background-image: url(2.jpg); -webkit-mask-image: linear-gradient(to right, transparent 47.5%, #fff 52.5%); -webkit-mask-size: 210%; -webkit-mask-position: left; }
|