ホームページ > 記事 > WeChat アプレット > WeChat ミニ プログラム用のユーザー定義テンプレートの機能実装
この記事では、WeChat ミニ プログラムのユーザー定義テンプレートの使用方法を主に紹介し、WeChat ミニ プログラムのカスタム テンプレートの定義、データ呼び出し、レイアウト設定、その他の簡単な使用テクニックを、必要な友人が参照できるように詳細に分析します。それに。
1. 新しい wxml を作成します (テストの便宜上、wxml ファイルはここのホーム ディレクトリに作成されます)
/home/home/botmenu.wxml:
<template name="bottommenu"> <view class="bottomposition"> <navigator class="item_info" url="../home/home"> <image src="../img/sy.png"></image> <text>首页</text> </navigator> <navigator class="item_info" url="/pages/home/home"> <image src="../img/xx.png"></image> <text>消息</text> </navigator> <navigator class="item_info" url="/pages/home/home"> <image src="../img/lz.png"></image> <text>工具</text> </navigator> <navigator class="item_info" url="/pages/home/home"> <image src="../img/wo.png"></image> <text>我</text> </navigator> </view> </template>
2. 新しい wxss
/home を作成します。 /home/botmenu.wxss :
.bottomposition{ width: 100%; height: 10%; position: fixed; overflow: hidden; left: 0; top: 90%; z-index: 1100; display: flex; border-top: 1rpx solid #dadada; } .item_info { width: 25%; height: 100%; display: flex; align-items: center; flex-direction: column; justify-content: center; } .item_info image { width: 20px; height: 20px; } .item_info text { margin-top: 5px; font-size: 12px; } .infolist{ margin:10px; padding: 0 10px; font-size: 12px; }
3. ページ参照
<import src="../home/home.wxml"/> <view class="info"> <template is="bottommenu"></template> </view>
5. Index.js 内のデータ:
@import "../home/home.wxss";
6. 上記の内容です。 WeChat アプレットのユーザー定義テンプレート機能が実装されました。皆様のお役に立てれば幸いです。
関連する推奨事項:
WeChatアプレットでビューラベルの幅と高さを動的に変更する方法WeChatアプレットに画像拡大プレビュー機能を実装する方法
以上がWeChat ミニ プログラム用のユーザー定義テンプレートの機能実装の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。