收藏
回答

swiper previous-margin设置不起作用

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 需求 swiper 工具 7.0.3 2.4.0


previous-margin 设置无效,但next-margin有效果。如图:





回答关注问题邀请回答
收藏

3 个回答

  • Vision_X
    Vision_X
    2020-03-26

    swiper-item不要设置width


    2020-03-26
    有用
    回复
  • Z&Y
    Z&Y
    2020-01-03

    父组件wxml

    <view class"subBanner">

    bannerprevious-margin"30rpx"next-margin"{{nextMargin}}"autoplay"{{true}}"></banner

    </view


    父组件js

    const app = getApp()

    Page({

    data: {

    url: http.url, // url初始化

    imgUrls: [], // 轮播图路径

    perviousMargin: '30rpx', // 轮播图当前个距离左边的距离

    nextMargin: '30rpx', // 轮播图当前个距离右边的距离

    indicatorDots: false, // 轮播图去掉默认项目导航

    subCurrentIndex: // 轮播图当前个下标

    },

    })


    子组件wxml

    viewclass"banner">

    swiperindicator-dots"{{true}}"autoplay"{{false}}"interval"{{false}}"duration"300"current"0"circular"true"previous-margin"{{perviousMargin}}"next-margin"{{nextMargin}}">

    blockwx:for"{{imgUrls}}"wx:key"banner">

    swiper-item

    imagesrc"{{url+item.previewUrl}}"class"slide-image"></image

    </swiper-item

    </block

    </swiper

    </view>

    子组件js

    const http = require('../../utils/http'

    Component({

    options:{

    multipleSlots: true, // 在组件使用插槽slot并支持多个插槽

    addGlobalClass: true// 组件的样式可以在全局进行修改

    },

    /*组件的属性列表*/

    properties:{

    indicatorDots:{

    type:Boolean

    value:true

    },

    autoplay:{

    type:Boolean

    value:false

    },

    currentIndex:{

    type:Number

    value:

    },

    imgUrls:{

    type:Array

    value:[]

    },

    circular:{

    type:Boolean

    value:false

    },

    perviousMargin:{

    type:String

    value:'0'

    },

    nextMargin:{

    type:String

    value:'0'

    },

    url:{

    type:String

    value:http.url

    },

    interval:{

    type:Number

    value:300

    },

    duration:{

    type:Number

    value:500

    }

    },

    methods:{

    getSubBannerURL: function () {

    http.get({

    url: 'webapp/websiteImages'

    success: res => {

    this.setData({

    imgUrls: res.data.entity.type_1

    })

    this.triggerEvent('setSubImgUrl', {

    imgUrls: res.data.entity.type_1

    })

    }

    })

    },

    },

    /*

    组件生命周期函数,在组件实例进入页面节点树时执行

    attached只执行与一次 不会重新渲染

    */

    attached: function () {

    this.getSubBannerURL()

    }

    })






    2020-01-03
    有用
    回复
  • 灵芝
    灵芝
    2019-03-06

    你好,这边测试是正常的,请提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html

    2019-03-06
    有用
    回复 6
    • 杨泉
      杨泉
      2019-03-12

      这个就别在要代码片段了,我这里也一样的问题,就是最基础的swiper,机型iphonex

      2019-03-12
      回复
    • 灵芝
      灵芝
      2019-03-12回复杨泉

      用这个代码片段能复现问题吗?https://developers.weixin.qq.com/s/RvcrLOmJ7T6i

      这边测试是有效的,iOS版本和微信版本是什么?


      2019-03-12
      回复
    • 杨泉
      杨泉
      2019-03-12回复灵芝

      ok,我这里的问题,一段样式写错了。。。

      2019-03-12
      回复
    • 💪💻
      💪💻
      2019-05-24回复灵芝

      我的也是设置无效 你这个代码片段怎么打不开 没有代码

      2019-05-24
      回复
    • 灵芝
      灵芝
      2019-05-24回复💪💻

      有内容的,是不是开发工具版本太旧了,更新一下开发工具试试

      2019-05-24
      回复
    查看更多(1)
登录 后发表内容