溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

微信小程序的宿主環(huán)境怎么實現(xiàn)

發(fā)布時間:2022-10-10 14:30:24 來源:億速云 閱讀:133 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要介紹了微信小程序的宿主環(huán)境怎么實現(xiàn)的相關(guān)知識,內(nèi)容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇微信小程序的宿主環(huán)境怎么實現(xiàn)文章都會有所收獲,下面我們一起來看看吧。

小程序的宿主環(huán)境 - 組件

1.scroll-view 組件的基本使用

實現(xiàn)如圖的縱向滾動效果

微信小程序的宿主環(huán)境怎么實現(xiàn)

<scroll-view class="container_2" scroll-y>
 <view>T</view>
<view>S</view>
<view>J</view>
</scroll-view>
.container_2 view{
width: 100px;
height: 100px;
text-align: center;
line-height: 100px;
}
.container_2 view:nth-child(1){
background-color: red;
}
.container_2 view:nth-child(2){
  background-color: yellowgreen;
}
.container_2 view:nth-child(3){
  background-color: blue;
}
.container_2{
  display: flex;
  justify-content: space-around
}
 
.container_2{
  border: 1px solid yellowgreen;
  height: 130px;
  width: 100px;
}

scroll-y 改成 scroll-x

實現(xiàn)如圖的橫向滾動效果:

微信小程序的宿主環(huán)境怎么實現(xiàn)

 <scroll-view class="container_2" scroll-x>
 <view>橫           向           滑           動           演           示</view>
</scroll-view>
.container_2 view{
width: 300px;
height: 100px;
text-align: center;
line-height: 100px;
}
.container_2 view:nth-child(1){
background-color: red;
}
.container_2{
  display: flex;
  justify-content: space-around
}
 
.container_2{
  border: 1px solid yellowgreen;
  height: 100px;
  width: 100px;
}

2.swiper 和 swiper-item 組件的基本使用

實現(xiàn)如圖的輪播圖效果:

微信小程序的宿主環(huán)境怎么實現(xiàn)

<swiper class="container_3" indicator-dots>
<swiper-item>
<view class="item">1</view>
</swiper-item>
 
<swiper-item>
  <view class="item">2</view>
</swiper-item>
 
<swiper-item>
  <view class="item">3</view>
</swiper-item>
 
 
<swiper-item>
  <view class="item">4</view>
</swiper-item>
</swiper>
.container_3{
  height: 160px;
}
 
.item{
  height: 100%;
  line-height: 150px;
  text-align: center;
}
 
swiper-item:nth-child(1) .item{
  background-color: burlywood;
}
swiper-item:nth-child(2) .item{
  background-color: yellow;
}
swiper-item:nth-child(3) .item{
  background-color: pink;
}
swiper-item:nth-child(4) .item{
  background-color: aqua;
}

.swiper 組件的常用屬性

屬性

類型

默認值

說明

indicator-dots

booleanfalse是否顯示面板指示點
indicator-colorcolorrgba(0, 0, 0, .3)指示點顏色
indicator-active-colorcolor#000000當前選中的指示點顏色
autoplaybooleanfalse是否自動切換
intervalnumber5000自動切換時間間隔
circularbooleanfalse是否采用銜接滑動

3.text 組件的基本使用

文本組件

類似于 HTML 中的 span 標簽,是一個行內(nèi)元素

通過 text 組件的 selectable 屬性,實現(xiàn)長按選中文本內(nèi)容的效果:

微信小程序的宿主環(huán)境怎么實現(xiàn)

<view>
手機號:
<text selectable>17608777</text>
</view>

4.rich-text 組件的基本使用

富文本組件

支持把 HTML 字符串渲染為 WXML 結(jié)構(gòu)

微信小程序的宿主環(huán)境怎么實現(xiàn)

<rich-text nodes="<h2 style='color:pink;'>一級標題 <h2>"></rich-text>

關(guān)于“微信小程序的宿主環(huán)境怎么實現(xiàn)”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“微信小程序的宿主環(huán)境怎么實現(xiàn)”知識都有一定的了解,大家如果還想學習更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI