刚用Sass写了个按钮的hover效果,感觉CSS Modules真香啊!代码简洁又易维护,分享一下:

.button {
  background-color: blue;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  transition: all 0.3s;

  &:hover {
    background-color: darkblue;
    transform: scale(1.1);
  }
}


看着效果不错,有空再研究下更多的动画效果吧~