美文网首页
uni-app使用QS-SharePoster

uni-app使用QS-SharePoster

作者: SeekLife0 | 来源:发表于2024-06-23 15:55 被阅读0次

参考:取舍/QS-SharePoster (gitee.com)


                      {
                            type: 'text', //文字类型
                            text: storeTitle, //文字内容
                            size: uni.upx2px(28), //字体大小
                            color: '#000000', //字体颜色
                            dx: uni.upx2px(355), //左边的距离
                            dy: uni.upx2px(250), //顶部的距离
                            fontFamily: 'Medium',
                            textAlign: 'center', //居中
                            fontWeight: 'bold', //粗体
                            lineFeed: {
                                maxWidth: uni.upx2px(410), //文字最大宽度
                                lineNum: 1, //只显示一行
                            }
                       },
                       {
                            type: 'image',
                            dx: uni.upx2px(65),
                            dy: uni.upx2px(323),
                            dWidth: uni.upx2px(32),
                            dHeight: uni.upx2px(32),
                            url: '图片链接'
                        },
                       // 填充颜色的矩形
                       { 
                            type: 'fillRect',
                            backgroundColor: '#DAE1FE',
                            width: uni.upx2px(250),
                            height: uni.upx2px(40),
                            dx: uni.upx2px(167),
                            dy: uni.upx2px(930)
                        }

相关文章

网友评论

      本文标题:uni-app使用QS-SharePoster

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