美文网首页【达达】Web全栈之路程序员微信小程序
微信小程序的分享功能-css文字超过两行隐藏

微信小程序的分享功能-css文字超过两行隐藏

作者: 魔王哪吒 | 来源:发表于2019-06-01 02:14 被阅读33次
.info{
     width:100px;
     word-break:break-all;
     display:-webkit-box;
     -webkit-box-orient:vertical;
     -webkit-line-colamp:3;
     overflow:hidden;
}

button组件设置属性 open-type="share"

onShareAppMessage: function () {} 事件

image.png
<button open-type="share">分享</button>
image.png
//转发
  onShareAppMessage: function() {
    let users = wx.getStorageSync('user');
    if (res.from === 'button') {}
    return {
      title: '转发',
      path: '/pages/index/index',
      success: function(res) {}
    }
  }
image.png image.png image.png image.png image.png image.png

请点赞!因为你的鼓励是我写作的最大动力!

官方微信公众号

吹逼交流群:711613774

吹逼交流群

相关文章

网友评论

    本文标题:微信小程序的分享功能-css文字超过两行隐藏

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