- CSS 教程
- CSS - 首页
- CSS - 路线图
- CSS - 简介
- CSS - 语法
- CSS - 选择器
- CSS - 包含
- CSS - 测量单位
- CSS - 颜色
- CSS - 背景
- CSS - 字体
- CSS - 文本
- CSS - 图片
- CSS - 链接
- CSS - 表格
- CSS - 边框
- CSS - 块级边框
- CSS - 内联边框
- CSS - 外边距
- CSS - 列表
- CSS - 内边距
- CSS - 光标
- CSS - 轮廓
- CSS - 尺寸
- CSS - 滚动条
- CSS - 块内元素
- CSS - 下拉菜单
- CSS - 可见性
- CSS - 溢出
- CSS - Clearfix
- CSS - 浮动
- CSS - 箭头
- CSS - 调整大小
- CSS - 引号
- CSS - 顺序
- CSS - 定位
- CSS - 连字符
- CSS - 悬停
- CSS - 显示
- CSS - 焦点
- CSS - 缩放
- CSS - 位移
- CSS - 高度
- CSS - 连字符字符
- CSS - 宽度
- CSS - 不透明度
- CSS - Z-Index
- CSS - 底部
- CSS - 导航栏
- CSS - 覆盖层
- CSS - 表单
- CSS - 对齐
- CSS - 图标
- CSS - 图片库
- CSS - 注释
- CSS - 加载器
- CSS - 属性选择器
- CSS - 组合器
- CSS - 根元素
- CSS - 盒模型
- CSS - 计数器
- CSS - 剪裁
- CSS - 书写模式
- CSS - Unicode-bidi
- CSS - min-content
- CSS - 全部
- CSS - 内嵌
- CSS - 隔离
- CSS - 溢出滚动
- CSS - Justify Items
- CSS - Justify Self
- CSS - Tab Size
- CSS - 指针事件
- CSS - Place Content
- CSS - Place Items
- CSS - Place Self
- CSS - 最大块级尺寸
- CSS - 最小块级尺寸
- CSS - 混合模式
- CSS - 最大内联尺寸
- CSS - 最小内联尺寸
- CSS - 偏移量
- CSS - 口音色
- CSS - 用户选择
- CSS 高级
- CSS - 网格
- CSS - 网格布局
- CSS - Flexbox
- CSS - 可见性
- CSS - 定位
- CSS - 图层
- CSS - 伪类
- CSS - 伪元素
- CSS - @规则
- CSS - 文字效果
- CSS - 分页媒体
- CSS - 打印
- CSS - 布局
- CSS - 验证
- CSS - 图片精灵
- CSS - !important
- CSS - 数据类型
- CSS3 教程
- CSS3 - 教程
- CSS - 圆角
- CSS - 边框图片
- CSS - 多背景
- CSS - 颜色
- CSS - 渐变
- CSS - 盒阴影
- CSS - 盒装饰中断
- CSS - 光标颜色
- CSS - 文本阴影
- CSS - 文本
- CSS - 2D 变换
- CSS - 3D 变换
- CSS - 过渡
- CSS - 动画
- CSS - 多列
- CSS - 盒尺寸
- CSS - 工具提示
- CSS - 按钮
- CSS - 分页
- CSS - 变量
- CSS - 媒体查询
- CSS - 函数
- CSS - 数学函数
- CSS - 遮罩
- CSS - 形状
- CSS - 样式图片
- CSS - 特效性
- CSS - 自定义属性
- CSS 响应式
- CSS RWD - 简介
- CSS RWD - 视口
- CSS RWD - 网格视图
- CSS RWD - 媒体查询
- CSS RWD - 图片
- CSS RWD - 视频
- CSS RWD - 框架
- CSS 工具
- CSS - PX 到 EM 转换器
- CSS - 颜色选择器和动画
- CSS 资源
- CSS - 有用资源
- CSS - 讨论
CSS - transition-property 属性
CSS transition-property 属性指定哪些 CSS 属性应该应用过渡效果。
注意:如果transition-duration 属性设置为 0,则过渡将无效。
可能的值
none − 任何属性都不会发生过渡。
all − 每个可以过渡的属性都会过渡。
<custom-ident> − 一个字符串,指示当属性值更改时哪个属性应该具有过渡效果。
应用于
使用简写属性(例如,background)时,所有支持动画的其 longhand 子属性都将被动画化。
语法
关键字值
transition-property: none; transition-property: all;
<custom-ident> 值
transition-property: data_05; transition-property: -data; transition-property: data-column;
多个值
transition-property: data4, animation5; transition-property: all, height, color; transition-property: all, -moz-specific, sliding;
CSS transition-property - none 值
以下示例演示了使用transition-property: none,任何属性都不会应用过渡效果 −
<html> <head> <style> .box { width: 100px; padding: 10px; transition-property: none; transition-duration: 3s; background-color: pink; } .box:hover, .box:focus { margin-left: 80px; background-color: lightgrey; } </style> </head> <body> <div class="box">Hover over me</div> </body> </html>
CSS transition-property - all 值
以下示例演示了使用transition-property: all,过渡效果将应用于所有可以动画化的属性 −
<html> <head> <style> .box { width: 100px; padding: 5px; transition-property: all; transition-duration: 3s; background-color: lightgray; } .box:hover, .box:focus { margin-left: 80px; background-color: pink; padding: 15px; border: 4px solid blue; } </style> </head> <body> <div class="box">Hover over me</div> </body> </html>
CSS transition-property - <custom-ident> 值
以下示例演示了如何使用 CSS 自定义属性 (--pink-color) 来定义background-color 属性上的粉红色。当您将鼠标悬停在或聚焦于方块上时,元素的background-color 会根据自定义属性的值进行更改 −
<html> <head> <style> html { --pink-color: pink; } .box { width: 100px; padding: 10px; transition-property: background-color; transition-duration: 4s; background-color: lightgray; } .box:hover, .box:focus { background-color: var(--pink-color); } </style> </head> <body> <div class="box">Hover over me</div> </body> </html>
CSS transition-property - 使用属性值
以下示例演示了当transition-property 设置为padding时,当您将鼠标悬停在或聚焦于方块上时,padding 值将更改为15px −
<html> <head> <style> .box { width: 100px; transition-property: padding; transition-duration: 3s; background-color: lightgray; } .box:hover, .box:focus { padding: 15px; } </style> </head> <body> <div class="box">Hover over me</div> </body> </html>
广告