<html>
<head>
<style>
#div1 {
position: relative;
margin: auto;
height: 150px;
width: 250px;
padding: 10px;
border: 1px solid black;
animation: mymove 5s infinite;
perspective: 200px;
}
@keyframes mymove {
50% {perspective: 100px;}
}
#div2 {
padding: 50px;
position: absolute;
border: 1px solid black;
background-color: red;
transform: rotateX(45deg);
}
</style>
</head>
<body>
<h1>Animation of perspective</h1>
<div id="div1">DIV1
<div id="div2">Think that you are looking down on a wall. See what happens when you gradually change the perspective!</div>
</div>
<p><strong>Note:</strong> CSS Animations do not work in Internet Explorer 9 and earlier versions.</p>
</body>
<!-- Mirrored from www.w3schools.com/cssref/tryit.asp?filename=trycss_anim_perspective by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 02:36:21 GMT -->
</html>