admin 管理员组

文章数量: 887021

css view a if属性,uni

uni-app学习笔记(2)view属性控制css样式

uniapp通过标签属性来改变样式

当鼠标按下去的时候,他会变成这个样式

hover-class="box-active"

template

view

view class="box" hover-class="box-active"盒子/view

/view

/template

script

export default {

data() {

return {

}

},

methods: {

}

}

/script

style

.box{

background: #007AFF;

}

.box-active{

background: #4CD964;

}

/style

如果嵌套两层容器

只想让子容器变的话

使用

view class="box" hover-class="box-active" hover-stop-propagation盒子/view

hover-stop-propagation 这个属性,来阻止这个冒泡的

样式多少秒之后出现,或者多少秒后消失,可以用以下这两种属性控制

hover-start-time 按住后多久出现点击态,单位毫秒

hover-stay-time 手指松开后点击态保留时间,单位毫秒

uni-app学习笔记(2)view属性控制css样式 相关文章

贪吃蛇代码学习心得(C语言)

贪吃蛇代码学习心得(C语言) 前言 以前自学C语言时,学了点控制台光标的相关知识,就一直想弄个小游戏出来,第一个想到的就是贪吃蛇了。上下左右控制方向,随机生成食物,吃上食物长度加一,碰到墙壁或咬到自己结束游戏......想到了很多,甚至当时兴奋的睡

READMSR和CPUID指令在Guest中的代码执行路径学习

READMSR和CPUID指令在Guest中的代码执行路径学习 内核版本:5.3.0 qemu版本:4.2.0 READMSR指令 作用 读MSR,MSR由ECX(RCX)的内容指定,读出的内容保存在EDX(RDX):EAX(RAX)中. VMX相关 如果guest中执行rdmsr指令,并且以下情况之一成立,就会触发vmexit. "use MSR

Angular ngOnChanges hook学习笔记

只有这三种事件才会导致Angular视图的更新,都是异步事件。 Events:如 click, change, input, submit 等用户事件 XMLHttpRequests:比如从远端服务获取数据 Timers: 比如 JavaScript 的自有 API setTimeout(), setInterval()

Angular内部对template的处理学习笔记

/ How does Angular use the template to display the data of the screen, what is going on under the hood Clearly Angular is not handling the templa

Angular input decorator学习笔记

Input decorator只能用在Angular class字段里, 用于指定元数据,将class字段指定成input property. Decorator that marks a class field as an input property and supplies configuration metadata. The input property

一个简单的例子学习HTTP元素property和attribute的区别

源代码: htmlstyle/stylebutton disabledClick/buttonbuttonClick Me/button/html 效果如下: A button’s disabled property is false by default so the button is enabled. 当我们给button添加disabled attribute时,我们实际上给button的disabled prope

Angular property binding的学习笔记

To bind to an element’s property, enclose it in square brackets, [], which identifies the property as a target property. A target property is the DOM property to which you want to assign a value.

深度学习进度03(变量、api、案例:实现线性回归)

变量OP: 变量的特点: 创建变量: 修改变量的命名空间: API: 高级: 实现线性回归: 案例: 案例代码: def linear_regression(): """ 自实现一个线性回归 :return: """ with tf.compat.v1.variable_scope("prepare_data"): # 1)准备数据 X = tf.compat.

Typescript学习笔记--进阶篇

1. 类型别名 类型别名用来给一个类型起个新名字。 使用 type 创建类型别名。 类型别名常用于联合类型。 type Name = string;type NameResolver = () = string;type NameOrResolver = Name | NameResolver;function getName(n : NameOrResolver): Name { if (

CSS 笔记

CSS 绝对定位 position: absolute 以最近有定位的父元素为基准 不占位置 CSS 相对定位 position: relative 以自身元素为基准 占用原有位置 相对定位 不占位置(子绝父相): 父元素设置相对定位但是不设置内容 子元素设置绝对定位 由于子元素会根据最近有定

本文标签: css view a if属性 uni