提交 342d2018 编写于 作者: shutao-dc's avatar shutao-dc

update view.uvue

上级 8eb65dcf
<template>
<!-- #ifdef APP -->
<scroll-view style="flex: 1">
<!-- #endif -->
<view>
<page-head title="view"></page-head>
<view class="uni-padding-wrap uni-common-mt uni-common-mb">
<view>
<text class="uni-hello-text"> Flex是Flexible Box的缩写,意为“弹性布局”,用来为盒状模型提供最大的灵活性。当设置display: flex后,继续给view等容器组件设置flex-direction: row或column,就可以在该容器内按行或列排布子组件。uni-app推荐使用flex布局。因为flex布局有利于跨更多平台,尤其是采用原生渲染的平台。 </text>
</view>
<view class="uni-title uni-common-mt">
<text class="uni-title-text"> flex-direction: row </text>
<text class="uni-subtitle-text"> 横向布局 </text>
</view>
<view class="uni-flex uni-row">
<view class="flex-item uni-bg-red"><text style="color: #fff">A</text></view>
<view class="flex-item uni-bg-green"><text style="color: #fff">B</text></view>
<view class="flex-item uni-bg-blue"><text style="color: #fff">C</text></view>
</view>
<view class="uni-title uni-common-mt">
<text class="uni-title-text"> flex-direction: column </text>
<text class="uni-subtitle-text"> 纵向布局 </text>
</view>
<view class="uni-flex uni-column">
<view class="flex-item flex-item-V uni-bg-red"><text style="color: #fff">A</text></view>
<view class="flex-item flex-item-V uni-bg-green"><text style="color: #fff">B</text></view>
<view class="flex-item flex-item-V uni-bg-blue"><text style="color: #fff">C</text></view>
</view>
<view class="uni-title uni-common-mt">
<text class="uni-title-text"> 更多布局示例 </text>
<text class="uni-subtitle-text"> flex布局演示 </text>
</view>
<view>
<view class="text-box"><text class="text">纵向布局-自动宽度</text></view>
<view class="text-box" style="width: 300rpx"><text class="text">纵向布局-固定宽度</text></view>
<view class="text-box"><text class="text">横向布局-自动宽度</text></view>
<view class="text-box"><text class="text">横向布局-自动宽度</text></view>
</view>
<view class="uni-flex uni-row" style="-webkit-justify-content: center; justify-content: center">
<view class="text-box"><text class="text">横向布局-居中</text></view>
<view class="text-box"><text class="text">横向布局-居中</text></view>
</view>
<view class="uni-flex uni-row" style="-webkit-justify-content: flex-end; justify-content: flex-end">
<view class="text-box"><text class="text">横向布局-居右</text></view>
<view class="text-box"><text class="text">横向布局-居右</text></view>
</view>
<view class="uni-flex uni-row">
<view class="text-box" style="-webkit-flex: 1; flex: 1"><text class="text">横向布局-平均分布</text></view>
<view class="text-box" style="-webkit-flex: 1; flex: 1"><text class="text">横向布局-平均分布</text></view>
</view>
<view class="uni-flex uni-row" style="-webkit-justify-content: space-between; justify-content: space-between">
<view class="text-box"><text class="text">横向布局-两端对齐</text></view>
<view class="text-box"><text class="text">横向布局-两端对齐</text></view>
</view>
<view class="uni-flex uni-row">
<view class="text-box" style="width: 200rpx"><text class="text">固定宽度</text></view>
<view class="text-box" style="-webkit-flex: 1; flex: 1"><text class="text">自动占满余量</text></view>
</view>
<view class="uni-flex uni-row">
<view class="text-box" style="width: 200rpx"><text class="text">固定宽度</text></view>
<view class="text-box" style="-webkit-flex: 1; flex: 1"><text class="text">自动占满</text></view>
<view class="text-box" style="width: 200rpx"><text class="text">固定宽度</text></view>
</view>
<view class="uni-flex uni-row" style="-webkit-flex-wrap: wrap; flex-wrap: wrap">
<view class="text-box" style="width: 320rpx"><text class="text">一行显示不全,wrap折行</text></view>
<view class="text-box" style="width: 320rpx"><text class="text">一行显示不全,wrap折行</text></view>
<view class="text-box" style="width: 320rpx"><text class="text">一行显示不全,wrap折行</text></view>
</view>
<view class="uni-flex uni-row">
<view class="text-box" style="-webkit-flex: 1; flex: 1; height: 200rpx; -webkit-justify-content: center; justify-content: center; -webkit-align-items: flex-start; align-items: flex-start">
<text class="text" style="line-height: 70rpx">垂直居顶</text>
</view>
<view class="text-box" style="-webkit-flex: 1; flex: 1; height: 200rpx; -webkit-justify-content: center; justify-content: center; -webkit-align-items: center; align-items: center">
<text class="text">垂直居中</text>
</view>
<view class="text-box" style="-webkit-flex: 1; flex: 1; height: 200rpx; -webkit-justify-content: center; justify-content: center; -webkit-align-items: flex-end; align-items: flex-end">
<text class="text" style="line-height: 70rpx">垂直居底</text>
</view>
</view>
<view class="uni-title uni-common-mt">
<text class="uni-title-text"> 组合示例 </text>
<text class="uni-subtitle-text"> flex布局演示 </text>
</view>
<view class="uni-flex uni-row">
<view class="text-box uni-flex" style="width: 200rpx; height: 220rpx; -webkit-justify-content: center; justify-content: center; -webkit-align-items: center; align-items: center">
<image src="/static/plus.png" style="width: 150rpx; height: 150rpx"></image>
</view>
<view class="uni-flex uni-column" style="-webkit-flex: 1; flex: 1; -webkit-justify-content: space-between; justify-content: space-between">
<view class="text-box" style="height: 120rpx; justify-content: start; align-items: start; padding-left: 20rpx">
<text class="text" style="line-height: 70rpx">文字居左,留出左间距</text>
</view>
<view class="uni-flex uni-row">
<view class="text-box" style="-webkit-flex: 1; flex: 1">
<text class="text">剩余数量</text>
</view>
<view class="text-box" style="-webkit-flex: 1; flex: 1">
<text class="text">立即购买</text>
</view>
</view>
</view>
</view>
<button class="uni-common-mt" @click="goGeneralAttribute('/pages/component/view/view-draw')">DrawableContext</button>
</view>
</view>
<!-- #ifdef APP -->
</scroll-view>
<page-head title="view"></page-head>
<view class="main" :hover-class="hover_class ? 'is-parent-hover' : 'none'">
<view class="test-view" :hover-class="hover_class ? 'is-hover' : 'none'" :hover-stop-propagation="stop_propagation" :hover-start-time="start_time" :hover-stay-time="stay_time">
</view>
</view>
<!-- #ifdef APP -->
<scroll-view style="flex: 1">
<!-- #endif -->
<view class="content">
<boolean-data :defaultValue="false" title="是否指定按下去的样式类" @change="change_hover_class_boolean"></boolean-data>
<boolean-data :defaultValue="false" title="是否阻止本节点的祖先节点出现点击态" @change="change_stop_propagation_boolean"></boolean-data>
<enum-data :items="start_time_enum" title="按住后多久出现点击态" @change="radio_change_start_time_enum"></enum-data>
<enum-data :items="stay_time_enum" title="手指松开后点击态保留时间" @change="radio_change_stay_time_enum"></enum-data>
<view class="uni-padding-wrap uni-common-mt uni-common-mb">
<button class="uni-common-mt" @click="goGeneralAttribute('/pages/component/view/view-draw')">DrawableContext</button>
</view>
</view>
<!-- #ifdef APP -->
</scroll-view>
<!-- #endif -->
</template>
<script>
export default {
methods: {
<script>
import { type ItemType } from '@/components/enum-data/enum-data.vue'
export default {
data() {
return {
hover_class: false,
stop_propagation: false,
start_time: 50,
stay_time: 400,
start_time_enum: [{ "value": 50, "name": "50毫秒" }, { "value": 200, "name": "200毫秒" }] as ItemType[],
stay_time_enum: [{ "value": 400, "name": "400毫秒" }, { "value": 200, "name": "200毫秒" }] as ItemType[]
}
},
methods: {
change_hover_class_boolean(checked : boolean) {
this.hover_class = checked
},
change_stop_propagation_boolean(checked : boolean) {
this.stop_propagation = checked
},
radio_change_start_time_enum(time : number) {
this.start_time = time
},
radio_change_stay_time_enum(time : number) {
this.stay_time = time
},
goGeneralAttribute(path: string) {
uni.navigateTo({
url: path,
......@@ -124,32 +56,25 @@ export default {
</script>
<style>
.flex-item {
width: 33.3%;
height: 200rpx;
display: flex;
justify-content: center;
align-items: center;
.main {
padding: 10rpx 0;
flex-direction: row;
justify-content: center;
}
.flex-item-V {
width: 100%;
height: 150rpx;
.test-view {
height: 200px;
width: 200px;
background-color: white;
}
.text-box {
margin: 15rpx 10rpx;
padding: 0 20rpx;
background-color: #ebebeb;
height: 70rpx;
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
}
.text {
color: #777;
font-size: 26rpx;
}
.is-hover {
background-color: #179b16;
}
.is-parent-hover {
background-color: #aa0000;
}
</style>
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册