首页
图片的缩放效果
/* 公共的一个特效:鼠标触碰图片,能够有放大效果 */ .content-part img { transition: transform .4s ease 0s; } .content-part img:hover { transform: scale(1.1); } //div的阴影效果 .xxsw ul li:hover { box-shadow: 0 8px 16px 0 rgba(0,0,0,0.20); }
前端样式
相关
标签