标签:图片 \n on() hub sele 应用 技术 git images
转自:https://idig8.com/2018/08/12/xiaochengxu-chuji-24/
来说下 ,小程序的基础组件。源码:https://github.com/limingios/wxProgram.git 中的No.11

<!--icon.wxml-->
<view class="container">
<icon type=‘success‘ color=‘red‘ size=‘55‘></icon>
<icon type=‘success_no_circle‘ size=‘55‘></icon>
<icon type=‘info‘ size=‘55‘></icon>
<icon type=‘warn‘ size=‘55‘></icon>
<icon type=‘waiting‘ size=‘55‘></icon>
<icon type=‘cancel‘ size=‘55‘></icon>
<icon type=‘download‘ size=‘55‘></icon>
<icon type=‘search‘ size=‘55‘></icon>
<icon type=‘clear‘ size=‘55‘></icon>
</view>


<!--text.wxml-->
<view>
<text selectable=‘{{true}}‘>欢迎关注:编程坑太多</text>
</view>
<view>
<text>欢迎关注:编程坑太多</text>
</view>
<view>
<text space=‘{{true}}‘ decode="true">个人博客:????idig8.com</text>
</view>
<view>
<text space=‘{{false}}‘>个人博客:????idig8.com</text>
</view>
<view>
<text decode="true">个人博客:\t\nidig8.com</text>
</view>


<!--rich-text.wxml-->
<view>
  <rich-text nodes="{{mycontentStr}}"> </rich-text>
  <rich-text nodes="{{mycontentArray}}"> </rich-text>
</view>
rich-text.js
//rich-text.js
//获取应用实例
const app = getApp()
Page({
  data:{
    mycontentStr: ‘<img class="s_lg_img_gold_show" src="//www.baidu.com/img/bd_logo1.png" width="270" height="129" >‘,
    mycontentArray:[
      {
        name:"img",
        attrs:{
          class:"s_lg_img_gold_show",
          src:"//www.baidu.com/img/bd_logo1.png",
          width:"270",
          height:"129"
        }
      }
    ]
  }
})
rich-text.wxss
/**icon.wxss**/
.s_lg_img_gold_show{
  width:600rpx;
}

使用富文本需要特别注意


<!--progress.wxml-->
<view>
  <progress percent="70" show-info="{{true}}" stroke-width="20" color="red" active="{{true}}"></progress>
    <progress percent="{{mypercent}}" show-info="{{true}}" stroke-width="20" color="red" active="{{true}}" active-mode=‘forwards‘></progress>
  <view bindtap=‘addpercent‘ >增加进度条百分比</view>
</view>
//progress.js
//获取应用实例
const app = getApp()
Page({
  data:{
    mypercent:15
  },
  addpercent:function(){
    var newpercent = this.data.mypercent+20;
    this.setData({
      mypercent: newpercent
    })
  }
})

PS:关于基础组件部分就是这4块,从下次开始咱们一起了解下表单组件
标签:图片 \n on() hub sele 应用 技术 git images
原文地址:https://www.cnblogs.com/sharpest/p/10285538.html