美文网首页
小程序解决背景图拉伸问题

小程序解决背景图拉伸问题

作者: ONE2 | 来源:发表于2019-08-15 15:19 被阅读0次
    image.png

    设计将背景切成了三段,左边、中间、右边
    重新设置width解决问题
    const query = wx.createSelectorQuery().in(that)
    query.select('.nick-center-content').boundingClientRect(function (res) {
    console.log(res)
    that.setData({
    nickWidth: parseInt(res.width)
    })
    // res.width
    }).exec()

    -- END --
    

    欢迎体验作者开发的小程序


    微信小程序

    相关文章

      网友评论

          本文标题:小程序解决背景图拉伸问题

          本文链接:https://www.haomeiwen.com/subject/vvuzjctx.html