background-size: cover
实现背景图平铺展开,各自显示各自区域的背景图
上面transition: all 0.4s ease-in-out
下面opacity: 0.7transform: scale(0.99)
实现动画效果过度,缩放
这是 图片慢慢放大和缩小.toShop-btn{
position: fixed
top:730rpx
width: 81rpx
height:91rpx
line-height: 48px
z-index:99
right:0rpx
-moz-animation: myfirst 1s infinite
-webkit-animation: myfirst 1s infinite
-o-animation: myfirst 1s infinite
animation: myfirst 1s infinite
}
@keyframes myfirst{
0% { transform: scale(.8)}
50% { transform: scale(1)}
100% { transform: scale(.8)}
}