Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

image.png

home.wxml

<view>
  <button class="weui-btn weui-btn_primary">主操作</button>
  <button class="weui-btn weui-btn_primary weui-btn_loading">
  <i class="weui-loading"></i>正在加载
  </button>
  <button class="weui-btn weui-btn_primary weui-btn_disabled">禁止点击</button>
</view>

<view>
  <image src="https://picsum.photos/200" style="height:375rpx;width:375rpx;"></image>
</view>

<view>
  <swiper indicator-dots="{{true}}" autoplay="{{true}}" style="width:750rpx;">
    <swiper-item>
      <image src="https://picsum.photos/200"></image>
    </swiper-item>
    <swiper-item>
      <image src="https://picsum.photos/250"></image>
    </swiper-item>
    <swiper-item>
      <image src="https://picsum.photos/300"></image>
    </swiper-item>
  </swiper>
</view>

<view>
  <swiper indicator-dots="{{true}}" autoplay="{{true}}" style="width:750rpx;">
    <swiper-item>
      <image src="https://picsum.photos/200"></image>
    </swiper-item>
    <swiper-item>
      <image src="https://picsum.photos/250"></image>
    </swiper-item>
    <swiper-item>
      <image src="https://picsum.photos/300"></image>
    </swiper-item>
  </swiper>
</view>

<view>
  <text class="title">hello {{name}}</text>
</view>

<view>
  <text class="title">现在是 {{now}}</text>
</view>

home.wxss

page{
  height: 100%;
  width: 750rpx;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: scroll;
}

home.js

const app = getApp();
Page({
  data:{
    name:'李明月',
    now:app.globalData.now
  }
});

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.7k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...