PURE CSS BASED ANIMATION

Shashankk
1 min readNov 28, 2019

hello everyone here i have created pure css based switch in this i have use only css. not any special javascript code.it will slide on mouse over

.switch{

height: 200px;

width: 600px;

border-radius: 99px;

background-color:green;

}

.inner-box{

height: 100%;

width: 30%;

background-color:whitesmoke;

border-radius: 50%;

transition: 2s;

}

.inner-box:hover{

margin-left: 420px;

}

output of code

--

--

Shashankk
0 Followers

Engineering student who loves coding