3.uniapp中view的使用

view组件用法
	hover-stop-propagationy  属性意思是阻止冒泡	点大盒子的时候小盒子不会变	反之亦然
	hover-class="box-active"	指定按下去的样式类 	也就是点击设置会变颜色
	hover-start-time  按住后多久出现点击态,单位毫秒
	hover-stay-time  手指松开后点击态保留时间,单位毫秒

**建议直接复制编译器**


<template>
	<view class="max" hover-class="box2-active">		<view class="box" hover-class="box-active" hover-stop-propagation :hover-start-time="2000" :hover-stay-time="2000">我是一个大盒子哦view>	view>template>

<style>
	.max{		width: 200rpx;		height: 200rpx;		background-color: blue;	}	.box{		width: 100rpx;		height: 100rpx;		background-color: #F0AD4E;	}	.box-active{		background-color: #007AFF;	}	.box2-active{		background-color: pink;	}style>

你可能感兴趣的:(uniapp知识点,小程序,web,app,vue.js,前端,sass)