
小程序
qypingi
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
/* 小程序如何自定义tabbar上边框的颜色 */
page::before{ content: ‘’; position: fixed; left: 0; top: 0; width: 100%; height: 2rpx; background-color: #48b25a; z-index: 9999; } page::after{ content: ‘’; position: fixed; left: 0; bottom: 0; width...原创 2019-11-07 14:18:58 · 1286 阅读 · 0 评论 -
小程序侧边栏左右联动
<view class="classify {{classifySeleted==classify.id?'active':''}}" wx:for="{{cakeTypesTitle}}" wx:for-item="classify" wx:key="*this" data-id="{{classify.id}}" bindtap="tapClassify"> <v...原创 2019-10-30 17:36:27 · 749 阅读 · 0 评论 -
微信小程序自带的 富文本的解析显示
//js页面(result.data.newdata.content----html标签) content = result.data.newdata.content.replace(/\<img/gi, '<img style="width:90%!important;height:auto;display:block;margin:0 auto" ') .repla...原创 2019-09-24 11:20:35 · 924 阅读 · 0 评论