.productsShow>li {
-webkit-transition: .6s;
transition: .6s;
}
.productsShow>li:hover {
-webkit-transform: translateY(-4px);
transform: translateY(-4px);
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
-webkit-box-shadow: 0 40px 50px rgba(0,0,0,.25);
box-shadow: 0 40px 50px rgba(0,0,0,.25);
}
上一篇

本文是在工作中收集到实用并且常用的功能,仅供学习参考使用
1. 数组去重/***
*@desc: 数组去重
*/
const array = [' ', 1, 2, ' ',' ', 3];
// 1: "Set"
[...new
2020-04-20
下一篇

一个小demo
vue-manager
2020-04-16