.w
a.a(href="//unsplash.com/photos/CCQvy4C_WX4", target="_blank")
View Compiled
body {
display:grid;
place-content:center;
min-height:100vh;
}
.w {
--w:70vmin;
--h:40vmin;
--img:url(//images.unsplash.com/photo-1496523720220-b62e33cf3161?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=e282d7307d28a70e12f3b40800d04abd&auto=format&fit=crop&w=2089&q=80);
display:grid;
width:calc(var(--w));
height:calc(var(--h));
position:relative;
transform-style:preserve-3d;
}
.a {
background-image:var(--img);
background-size:150% 100%;
background-position:100% center;
display:block;
width:calc(var(--w) /1.5); height:var(--h);
transform-origin:center left;
transform-style:preserve-3d;
filter:grayscale(0.7);
margin:0 calc(var(--w)* (1/3) /2);
animation:f 2s alternate infinite;
}
.a::before {
content:" ";
display:block; width:50%; height:100%;
background-image:var(--img);
background-size:300% 100%;
background-position:0 center, 0 center;
background-repeat:no-repeat;
transform-origin:bottom right;
transform:scale(-1,1)translateX(100%)skewY(20deg);
animation:g 2s alternate infinite;
}
@keyframes f {
80%, to {
background-size:100% 100%;
background-position:0 center;
transform:scale(1.5,1);
filter:grayscale(0);
margin:0 0;
}
}
@keyframes g {
80%, to {
background-size:300% 100%;
background-position:-50% center;
width:0;
}
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.