【CSS 27】transitions 过渡 改变若干属性值 指定过渡的速度曲线 延迟过渡效果 过渡+转换

CSS

      • transitions 过渡

transitions 过渡

CSS 过渡允许您在给定的时间内平滑地改变属性值
我们需要使用到如下的属性:

  • transition
  • transition-delay
  • transition-duration
  • transition-property
  • transition-timing-function

如需创建过渡效果,必须明确两件事

  1. 要添加效果的 CSS 属性
  2. 效果的持续时间

注意:如果未规定持续时间部分,则过渡不会有效果,因为默认值为 0


DOCTYPE html>
<html>
<head>
<style>
div {
	width: 100px;
	height: 100px;
	background: red;
	transition: width 2s;
}

div:hover {
	width: 600px;
}
style>
head>
<body>

<h1>transition 属性h1>

<p>将鼠标悬停在div元素上来查看过度效果p>

<div>div>

body>
html>

改变若干属性值

/*下面的例子为 width 和 height 属性都添加了过渡效果,width 是 2 秒,height 是 4 秒*/
div {
  transition: width 2s, height 4s;
}

指定过渡的速度曲线
transition-timing-function 属性规定过渡效果的速度曲线
transition-timing-function 属性可接受以下值:

  • ease - 默认规定缓慢开始,然后加速,然后缓慢结束
  • linear - 规定从开始到结束具有相同速度的过渡效果
  • ease-in - 规定缓慢开始的过渡效果
  • ease-out - 规定缓慢结束的过渡效果
  • ease-in-out - 规定开始和结束较慢的过渡效果
  • cubic - bezier(n, n, n, n) - 允许您在三次贝塞尔函数中定义自己的值
div {
	width: 100px;
	height: 100px;
	background: red;
	transition: width 2s;
}

#div1 {transition-timing-function: linear;}
#div2 {transition-timing-function: ease;}
#div3 {transition-timing-function: ease-in;}
#div4 {transition-timing-function: ease-out;}

div:hover {
	width: 300px;
}

延迟过渡效果
transition-delay 属性规定过渡效果的延迟(以秒计)
下例在启动之前有 1 秒的延迟

div {
	width: 100px;
	height: 100px;
	background: red;
	transition: width 3s;
	transition-delay: 1s;
}

div:hover {
	width: 300px;
}

过渡 + 转换

DOCTYPE html>
<html>
<head>
<style>
/*下例为转换添加过渡效果:*/
div {
	width: 100px;
	height: 100px;
	background: red;
	transition: width 2s, height 2s, transform 2s;
}

div:hover {
	width: 300px;
	height: 300px;
	transform: rotate(180deg);
}
style>
head>
<body>

<h1>Transition + Transformh1>

<p>请将鼠标悬停再下面的div元素之上p>

<div>div>

<p><b>注释:b>本例在 Internet Explorer 9 和更早版本中不起作用p>

body>
html>

可以一个个指定 CSS 过渡属性

div {
	width: 100px;
	height: 100px;
	background: red;
	transition-property: width;
	transition-duration: 2s;
	transition-timing-function: linear;
	transition-delay: 1s;
}

div:hover {
	width: 300px;
}

或使用简写的 transition 属性,用于将四个过渡属性设置为单一属性

div {
	transition: width 2s linear 1s;
}

你可能感兴趣的:(CSS,css,前端)