随笔分类 - uniapp
摘要:<template> <view class="content"> <view class="banner"> <image :src="banner" mode="widthFix" class="banner_img"></image> <view class="banner_img_text"
阅读全文
摘要:微信小程序的组件和普通的 HTML 有所不同,比如 HTML 的 div 在小程序里面是 view ,HTML 的 span 在小程序里是 text 。 因为 uni-app 要兼容多终端和各种小程序,所以它的语法和微信小程序是基本一致的。 今天就整理一下小程序的图片组件(image)的缩放和裁切显
阅读全文
摘要:onShow() { var pages = getCurrentPages(); // 获取当前页面栈 var curPage = pages[pages.length - 1]; // 当前页面 if(curPage.data.init){ curPage.data.init = false;
阅读全文
摘要:<template> <view class="content"> <image class="logo" src="/static/logo.png" @click="clickImg"></image> </view> </template> <script> export default {
阅读全文