欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

微信小程序?qū)崿F(xiàn)點(diǎn)擊按鈕修改文字大小功能【附demo源碼下載】

 更新時(shí)間:2017年12月06日 09:00:10   作者:FutrueJet  
這篇文章主要介紹了微信小程序?qū)崿F(xiàn)點(diǎn)擊按鈕修改文字大小功能,涉及微信小程序事件綁定及setData動(dòng)態(tài)修改Page頁(yè)面data數(shù)據(jù),進(jìn)而控制頁(yè)面元素屬性動(dòng)態(tài)改變的相關(guān)操作技巧,需要的朋友可以參考下

本文實(shí)例講述了微信小程序?qū)崿F(xiàn)點(diǎn)擊按鈕修改文字大小功能。分享給大家供大家參考,具體如下:

1、效果展示

2、關(guān)鍵代碼

index.wxml文件

<view class="view" style="font-size:{{fontSize}}pt">我是view標(biāo)簽</view>
<button class="btn" type="default" bindtap="magnifyFontSize">點(diǎn)擊我字體變大</button>
<button class="btn" type="default" bindtap="shrinkFontSize">點(diǎn)擊我字體變小</button>

index.js文件

Page({
 data:{
  fontSize:10
 },
 magnifyFontSize(){
  this.setData({
   fontSize:this.data.fontSize+1
  })
 },
 shrinkFontSize(){
  this.setData({
   fontSize:this.data.fontSize-1
  })
 }
})

和前面的文章相似,這里的事件響應(yīng)函數(shù)中使用了this.setData修改了fontSize為this.data.fontSize+1this.data.fontSize-1,進(jìn)而動(dòng)態(tài)修改了index.wxml文件中style="font-size:{{fontSize}}pt"的字體大小。

3、源代碼點(diǎn)擊此處本站下載。

希望本文所述對(duì)大家微信小程序開(kāi)發(fā)有所幫助。

相關(guān)文章

最新評(píng)論