12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <template>
- <div class="carousel">
- </div>
- </template>
- <script>
- export default {
- name: 'carousel',
- data() {
- return {
- swiperOption: {
- pagination: {
- el: '.swiper-pagination',
- clickable : true,
- bulletClass: 'my-bullet',
- bulletActiveClass: 'my-bullet-active'
- },
- effect:'fade',
- autoplay: {
- delay: 10000,
- disableOnInteraction: true
- },
- }
- }
- }
- }
- </script>
- <style lang="less" scoped>
- .carousel {
- width: 100%;
- height: 100%;
- position: relative;
- .swiper-container {
- height: 100%;
- .swiper-slide {
- background-position: center;
- background-repeat: no-repeat;
- background-size: cover;
- background-attachment: scroll;
- height: 100%;
- text-align: center;
- font-size: 18px;
- &:nth-of-type(2) {
- background: url('https://file.funcheergame.com/office/image/index/carousel_01.png') center top / cover no-repeat;
- }
- &:nth-of-type(3) {
- background: url('https://file.funcheergame.com/office/image/index/carousel_02.png') center top / cover no-repeat;
- }
- }
- }
- }
- </style>
|