1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| wx-swiper .wx-swiper-dots { position: absolute; font-size: 0; left: 50%; bottom: 10px; text-align: center; white-space: nowrap; -webkit-transform: translate(-50%, 0); transform: translate(-50%, 0); }
wx-swiper .wx-swiper-dot { display: inline-block; width: 8px; height: 8px; transition-property: background-color; transition-timing-function: ease; background: rgba(0, 0, 0, 0.3); border-radius: 50%; }
wx-swiper .wx-swiper-dot-active { background-color: #000000; }
|
评论加载中