About Lesson
This video is embedded from Youtube and here’s the original one.
0:00
1:08
2:04
4:06
5:52
8:05
Resources:
How to create a custom SVG: Link.
CSS Snippets:
.menuImg{
opacity:0;
transition: all 0.8s ease-in-out;
transform: rotate(25deg);
}
.menuTitle:hover + .menuImg{
opacity:1;
transform: rotate(15deg);
}