美文网首页
过渡动画

过渡动画

作者: Amanda妍 | 来源:发表于2020-07-25 20:54 被阅读0次

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>过渡动画</title>

<style type="text/css">

*{

margin: 0;

padding: 0;

}

.one{

width: 200px;

height: 200px;

background-color: orange;

/*1、针对某个属性做动画 可以设置指定的属性名 也可以直接写all*/

transition-property: background-color width;

/*2、动画时间 */

transition-duration: 1s;

/*3、动画延时*/

/*transition-delay: 1s;*/

/*4、动画运行速率 */

transition-timing-function: linear;

}

.one:hover{

width: 500px;

/*height: 600px;*/

background-color: red;

opacity: 1;

/*显隐性没有动画效果*/

/*visibility: hidden;*/

}

#input1:focus{

margin-top: 100px;

}

#input1{

/**/

transition: all 1s linear;

}

#input2{

transition: all 1s linear;

}

#input2:checked{

/*选中复选框才会执行*/

margin-left: 100px;

}

/*媒体选中 才会执行!!*/

.two{

width: 300px;

height: 100px;

background-color: greenyellow;

transition: all 1s linear;

}

.three{

position: relative;

}

.three {

background-color: orange;

position: relative;

}

.three input{

width: 300px;

height: 50px;

margin-left: 100px;

text-align: center;

background-color: yellow;

border-radius: 2px;

}

img{

position: absolute;

left: 350px;

top: 0;

vertical-align: middle;

}

.three .over{

background-color: gray;

width: 300px;

margin-left: 100px;

text-align: center;

visibility: hidden;

}

.three:hover .over{

visibility: visible;

}

@media only screen and (max-width: 700px) {

.two{

opacity: 0;

}

}

</style>

</head>

<body>

<!--过渡动画  关键单词transition-->

<div class="one"></div>

<input id="input1" type="text" placeholder="请输入" /><br />

<input id="input2" type="checkbox" /><br />

<div class="two"></div>

<div class="three">

<input class="select" type="text" placeholder="扫地机器人" />

<img src="img/select.png" />

<div class="over">

<p>第一</p>

<p>第二</p>

<p>第三</p>

<p>第四</p>

</div>

</div>

</body>

</html>

相关文章

  • JS中的动画事件和过渡事件

    动画事件 动画事件demo 过渡动画事件 过渡动画事件demo

  • CSS3过渡动画

    过渡动画 transition属性简介transition是网页上的过渡动画,变化的逐渐过渡效果,简称过渡动画!列...

  • 过渡与动画

    @(HTML5)[过渡, 动画] [TOC] 五、过渡与动画 过渡 transition-property:过渡属...

  • 动画core animation

    type 动画过渡类型subtype 动画过渡方向

  • Android过渡动画Scene and Transition(

    Android场景过渡——Scene and Transition(一) 场景过渡动画 场景过渡动画是指以动画的形...

  • 016 过渡及动画

    过渡与动画 一、过渡 1、过渡属性 二、动画 1、动画属性 2、动画体 v_hint:动画属性设置给指定选择器标签...

  • CSS3--动画

    特点 过渡和动画之间的相同点过渡和动画都是用来给元素添加动画的过渡和动画都是系统新增的一些属性过渡和动画都需要满足...

  • CSS3动画

    css3动画包括过渡,形变,动画 过渡transition: 指定过渡样式:transition-property...

  • web前端-CSS3动画

    动画和过渡的异同 相同点过渡和动画都是给元素添加动画的过渡和动画都是CSS3新增的属性过渡和动画都需要满足三要素才...

  • Vue中的动画

    基础CSS过渡和动画 动画:keyframes过渡:transition 列表动画 状态动画 组件和元素切换 1....

网友评论

      本文标题:过渡动画

      本文链接:https://www.haomeiwen.com/subject/yjnmlktx.html