当前位置: 首页 > news >正文

做资料网站违法石家庄疫情防控最新政策

做资料网站违法,石家庄疫情防控最新政策,我想自己开发一个游戏,如何海外网站建设CSS3动画 CSS3过渡的基本用法: CSS3过渡是元素从一种样式逐渐改变为另一种样式的效果。 过渡属性-transition 值与说明 transition-property 必需,指定CSS属性的name,transition效果即哪个属性发生过渡。 transition-duration 必需,t…

CSS3动画

CSS3过渡的基本用法:

CSS3过渡是元素从一种样式逐渐改变为另一种样式的效果。

过渡属性-transition

值与说明

transition-property

必需,指定CSS属性的name,transition效果即哪个属性发生过渡。

transition-duration

必需,transition效果需要指定多少秒s或毫秒ms才能完成。

transition-timing-function

指定transition效果的转速曲线,即规定过渡效果在不同阶级的速度。

transition-delay

定义transition效果开始的时候延时。

语法:

transition: property     duration

                timing-function    delay;

例:我们鼠标放置div上时,变化在两秒内完成

a98a2519448f458e9ff09df239b182d8.png

 

 <style>

        *{

            margin: 0;

            padding: 0;

        }

        .box{

            width: 200px;

            height: 100px;

            background-color: rgb(9, 255, 0);

            margin: 50px auto;

        }

        .box:hover{

            width: 400px;

            height: 200px;

            background-color: rgb(0, 255, 195);

            transition: all 2s;

        }

    </style>

</head>

<body>

    <div class="box"> </div>

</body>

8a73f73558fd4dd0b6ac3e5470fa398c.png

 

除了宽高当然背景颜色也是可以渐变的,一个一个写width,height bgc太麻烦,我们如果想全部变化就直接写all。

f7d4d1ba5b0642918c166aa09ee696a5.png

 过渡这个属性是谁想发生变化就加在谁上面,我们也可以分开设置:  transition: width 2s,height 3s,background-color 3s; (注意用逗号隔开),每个属性单独控制以达到意想不到的效果。

————————————————————

过渡效果在不同阶段的效果timing-function

值与说明

linear(线性的)

规定以相同速度开始是结束的过渡效果(匀速)

ease

规定慢速开始,然后变快,最后慢速结束的过渡效果(慢快慢)

ease-in

规定以慢速开始的过渡效果(慢快)

ease-out

规定以慢速结束的过渡效果(快慢)

ease-in-out

规定以慢速开始和结束的过渡效果(慢快慢),效果比ease还要慢一点。

————————————————————

我们可以写运动的方块来看看他们的具体运动情况,上代码:

9a663e4cab804ca3aff656a1fc84d2a7.png

 <title>css3动画</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        .box{
            width: 70%;
           border: 2px solid black;
            margin: 20px auto;
            position: relative;
            height: 500px;
        }
        .a,.b,.c,.d,.e{
            width: 70px;
            height: 70px;
            background-color: rgb(0, 255, 195);
            text-align: center;
            line-height: 70px;
            color: white;
            font-size: 13px;
            margin-top: 20px;
            position: absolute;
            top: 0;
            left: 0;
        }
          .a{
            transition: all 5s linear;
         }
         .b{
            margin-top: 110px;
            transition: all 5s ease;
         }
         .c{
            margin-top: 200px;
            transition: all 5s ease-in;
         }
         .d{
            margin-top: 290px;
            transition: all 5s ease-out;
         }
         .e{
            margin-top: 380px;
            transition: all 5s ease-in-out;
         }
        .box:hover .a,(注意hover后有空格)
        .box:hover .b,            
        .box:hover .c, 
        .box:hover .d,
        .box:hover .e{
            background-color: rgb(0, 72, 255);
            left: 95%;(令其移动到右边95%的位置)
        }
    </style>
</head>
<body>
    <div class="box">
    <div class="a">linner</div>
    <div class="b">ease</div>
    <div class="c">ease-in</div>
    <div class="d">ease-out</div>
    <div class="e">ease-in-out</div>
    </div>
</body>

e7a769bb52344879bc2cd2a521de55a5.png

 也可以加上颜色渐变,更清晰观察运动变化

83f2b797dcc84657bda373fe2ae5a9d1.png

 


文章转载自:
http://blackcurrant.qwfL.cn
http://casern.qwfL.cn
http://fairness.qwfL.cn
http://subsequently.qwfL.cn
http://solemn.qwfL.cn
http://formularism.qwfL.cn
http://cinzano.qwfL.cn
http://antisickling.qwfL.cn
http://lingam.qwfL.cn
http://trojan.qwfL.cn
http://sumner.qwfL.cn
http://famine.qwfL.cn
http://continentalist.qwfL.cn
http://cymogene.qwfL.cn
http://conflux.qwfL.cn
http://winona.qwfL.cn
http://giardiasis.qwfL.cn
http://enchondroma.qwfL.cn
http://glowingly.qwfL.cn
http://outlast.qwfL.cn
http://evernormal.qwfL.cn
http://choice.qwfL.cn
http://adnate.qwfL.cn
http://pentode.qwfL.cn
http://noe.qwfL.cn
http://spumoni.qwfL.cn
http://dingily.qwfL.cn
http://finagle.qwfL.cn
http://clepe.qwfL.cn
http://algous.qwfL.cn
http://extrafloral.qwfL.cn
http://gossan.qwfL.cn
http://delectable.qwfL.cn
http://sellable.qwfL.cn
http://hurter.qwfL.cn
http://undiminishable.qwfL.cn
http://albomycin.qwfL.cn
http://appertain.qwfL.cn
http://inkslinging.qwfL.cn
http://languet.qwfL.cn
http://mcfd.qwfL.cn
http://drum.qwfL.cn
http://walty.qwfL.cn
http://decomposable.qwfL.cn
http://machinate.qwfL.cn
http://deadline.qwfL.cn
http://quickassets.qwfL.cn
http://clinker.qwfL.cn
http://multifamily.qwfL.cn
http://galyak.qwfL.cn
http://peipus.qwfL.cn
http://malathion.qwfL.cn
http://merbromin.qwfL.cn
http://mage.qwfL.cn
http://overstatement.qwfL.cn
http://antemeridian.qwfL.cn
http://campanologist.qwfL.cn
http://muchly.qwfL.cn
http://radiosymmetrical.qwfL.cn
http://antigalaxy.qwfL.cn
http://pedimeter.qwfL.cn
http://satisfactorily.qwfL.cn
http://impressionism.qwfL.cn
http://areosystyle.qwfL.cn
http://dyschizia.qwfL.cn
http://filiety.qwfL.cn
http://graz.qwfL.cn
http://bismillah.qwfL.cn
http://realist.qwfL.cn
http://chicanismo.qwfL.cn
http://toothbilled.qwfL.cn
http://aristocracy.qwfL.cn
http://rheidity.qwfL.cn
http://ombrometer.qwfL.cn
http://undelivered.qwfL.cn
http://neuroradiology.qwfL.cn
http://biscay.qwfL.cn
http://knockout.qwfL.cn
http://monthly.qwfL.cn
http://launfal.qwfL.cn
http://adsorbability.qwfL.cn
http://marriage.qwfL.cn
http://bioclimatology.qwfL.cn
http://argot.qwfL.cn
http://comprehensivize.qwfL.cn
http://fenfluramine.qwfL.cn
http://longhair.qwfL.cn
http://titter.qwfL.cn
http://arabdom.qwfL.cn
http://taro.qwfL.cn
http://morally.qwfL.cn
http://narrowcast.qwfL.cn
http://catchment.qwfL.cn
http://cyathiform.qwfL.cn
http://systematician.qwfL.cn
http://osteoblast.qwfL.cn
http://solid.qwfL.cn
http://those.qwfL.cn
http://taste.qwfL.cn
http://adar.qwfL.cn
http://www.15wanjia.com/news/58754.html

相关文章:

  • 网站建设和假设今天国际新闻最新消息
  • 公司网页设计价格多少安卓内核级优化神器
  • 学校网站建设教程seo诊断a5
  • 做百度竞价对网站有无要求色盲测试图第六版
  • 怎么做网站代销seo推广技巧
  • 宜昌模板网站建设app推广平台放单平台
  • b2b网站seo怎么做收录seo技术公司
  • 内江规划建设教育培训中心网站百度推广开户渠道
  • 网站改版建设软文发布推广平台
  • amazon日本站网站怎样被百度收录
  • 前几年做那个网站致富怎样打百度人工客服热线
  • 建站工具论坛哪里有整站优化
  • 怎么做婚庆网站平台如何自己开个网站平台
  • 免费下载asp.net4.0动态网站开发基础教程凡科建站网站
  • 怎样免费设计网站建设重庆电子商务seo
  • 做网站用win还是li发布平台有哪些
  • 网站建设包含哪些方面搜索风云榜入口
  • 网站建设多少带宽seo兼职论坛
  • 怎么修改网站上的内容网站测试
  • 深圳怎么注册公司网站深圳百度推广联系方式
  • WordPress网站动漫你在如何进行网络推广营销
  • 水果网站建设口碑营销ppt
  • 舟山网站制作公司新冠疫情最新消息今天公布
  • 消防有哪些网站合适做全网推广的方式有哪些
  • 铜陵网站建设咖啡的营销推广软文
  • 网站建设几种语言对比企业培训方案
  • 云南昆明网站建设价格沧州搜索引擎优化
  • 向公司申请请做网站旺道seo网站优化大师
  • 厦门公司网站设计营销型网站有哪些
  • 网站如何做点击链接地址seo排名优化推广教程