Dieser Artikel bietet Ihnen ein Beispiel für ein WeChat-Miniprogramm: eine Einführung in die Methode zum Erstellen einer statischen Seite. Ich hoffe, dass es für Sie hilfreich ist . Erstellen Sie ein neues Verzeichnis
unter dem Verzeichnispages
detail
und erstellen Sie eine neue Seite darin detail
:
Ändern Sie in detail.json
zunächst den Textinhalt von Der Titel der Navigationsleiste:
{ "navigationBarTitleText": "DETAIL页面" }
detail.wxml
<!--pages/detail/detail.wxml--><view class='detailContainer'> <image class='headImg' src='/images/detail/carousel/1.jpg'></image> <view class='avatar_date'> <image src='/images/avatar/0.png'></image> <text>美国队长</text> <text>发布于</text> <text>2018 06 12</text> </view> <text class='company'>火影村</text> <view class='collection_share_container'> <view class='collection_share'> <image src='/images/icon/collection-anti.png'></image> <image src='/images/icon/share-anti.png'></image> </view> <view class='line'></view> </view> <button>转发此文章</button> <text class='content'>火咖啡馆就是了疯狂关键时刻来得及公司领导看过就发上来的考试管理的风格就是的离开几个老师</text></view>
detail.wxss
/* pages/detail/detail.wxss */ .detailContainer { display: flex; flex-direction: column; } .headImg{ width:100%; height:460rpx; } .avatar_date{ padding: 10rpx; } .avatar_date image{ width: 64rpx; height: 64rpx; vertical-align: middle; } .avatar_date text{ font-size: 32rpx; margin-left: 10rpx; } .company{ font-size: 38rpx; font-weight: bold; margin-left: 10rpx; } .collection_share_container{ position: relative; } .collection_share{ float: right; margin-right: 50rpx; } .collection_share image{ width: 90rpx; height: 90rpx; margin-right: 20rpx; } .line{ width: 90%; height: 2rpx; background: rgb(226, 19, 19); top: 45rpx; left: 5%; position: absolute; z-index: -1; } button{ width: 280rpx; height: 80rpx; } .content{ font-size: 32rpx; text-indent: 64rpx; margin: 50rpx 0; }
Die Darstellung ist wie folgt:
Verwandte Empfehlungen:
Detaillierte Erläuterung des Falles des WeChat-Miniprogramms: Seitenaufbau
Entwicklung des WeChat-Miniprogramms – Erstellen einer Begrüßungsseite
Das obige ist der detaillierte Inhalt vonBeispiel für ein WeChat Mini-Programm: Einführung in die Methode zum Erstellen einer statischen Seite für eine Detailseite. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!