首页 > Web开发 > 详细

css3笔记

时间:2019-11-09 15:00:46      阅读:88      评论:0      收藏:0      [点我收藏+]
/* 飞机飞行 */
.plane {
    position: absolute;
    top: 18%;
    left: 13%;
    -webkit-animation: flying 15s linear infinite;
    animation: flying 15s linear infinite;
    z-index: 30;
}

@keyframes flying {
     0% {top: 100px;left: 500px;}
    100% {top: 380px;left:-100px;}
}
@-moz-keyframes flying {
    0% {top: 100px;left: 500px;}
    100% {top: 380px;left:-100px;}
}
@-webkit-keyframes flying {
    0% {top: 100px;left: 500px;}
    100% {top: 380px;left:-100px;}
}

 

css3笔记

原文:https://www.cnblogs.com/y896926473/p/11825425.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!