Transformation and transition using html and css
Code 👇🏻
<!doctype html>
<html>
<head>
<style>
h1 {color: yellow;}
body {background-color: black;}
.box { background-color: white;
width: 100px;
height: 100px;
transition: width 2s, height 2s, transform 2s;}
.box:hover { width: 90%;
height: 900px;
background-color: black;
transform:rotatez(180deg);
box-shadow:10px 10px 700px red; }
</style>
</head>
<body>
<h1> touch below white box after effect touch black area </h1>
<br>
<br>
<br>
<br>
<div class="box"></div>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<h1 style="text-align:center;color:red">plz guys give me your valuable star 🌟</h1>
</body>
</html>