JSFiddle - React, Tailwind, and code Playground

by evan

HTML

<div class="container">
    <img src="http://placekitten.com/1000/1000" />
</div>

CSS

.container {
    width: 600px;
    height: 600px;
    overflow: hidden;
}

.container img {
    margin-left: -200px;
    margin-top: -200px;
    width: 1000px;
    height: 1000px;
    
    -webkit-transition: all 1s;
    transition: 1s;
}

.container:hover img {
    margin-left: 0;
    margin-top: 0;
    width: 600px;
    height: 600px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}