css3实现动画自行车效果

这次给大家带来css3实现动画自行车效果,css3实现动画自行车效果的注意事项有哪些,下面就是实战案例,一起来看一下。

首先来看看实现的效果图(静态):

css3实现动画自行车效果

实例源码:

     自行车     * {    margin: 0;    padding: 0   }      ol,   ul {    list-style: none/*去掉圆点或数字*/   }      .cycle-outer {    width: 534px;    height: 260px;    position: absolute;    /*绝对定位*/    top: 50%;    /*距离顶部*/    margin: -160px 0 0 -267px;    /*距离外边距*/    left: 50%;   }      .cycle-wrapper {    width: 534px;    height: 260px;    margin: 0 auto;    position: relative;    /*相对定位*/   }      .cycle-wheel-front {    /*前轮*/    margin: 100px 0 0 330px;   }      .cycle-wheel-back {    /*后轮*/    margin: 100px 0 0 0px;   }      .cycle-wheel-outer {    background: transparent;    border: 5px solid #aaa;    border-radius: 50%;    /*画外轮圆圈*/    width: 190px;    height: 190px;    position: absolute;    margin-top: 5px;    animation: wheel-rotate 2s linear infinite;    /*定义动画*/   }   /*轮胎开始旋转*/   @keyframes wheel-rotate {    from {     transform: rotate(0deg);    }    to {     transform: rotate(360deg);    }   }      .cycle-wheel-outer:after {    /*插入内轮胎圆圈*/    background: transparent;    border: 4px solid #EF9058;    border-radius: 50%;    width: 176px;    height: 176px;    position: absolute;    margin: 3px;    content: "";   }      .spoke {    /*开始画车轮线条*/    position: absolute;    width: 1px;    height: 200px;    background: #ccc;    margin: -5px 0 0 95px;    z-index: 0;   }      .spoke:after {    /*在后面插入两条*/    content: "";    position: absolute;    width: 1px;    height: 200px;    background: #ccc;    transform: rotate(120deg);   }      .spoke:before {    /*在前面插入两条*/    content: "";    position: absolute;    width: 1px;    height: 200px;    background: #ccc;    transform: rotate(240deg);   }   /*轮胎线条完成*/      .spoke-container li:nth-child(2) {    /*中心点旋转*/    transform: rotate(30deg);   }      .inner-disc {    /*画中心轴圆点*/    background: #666;    width: 20px;    height: 20px;    border-radius: 50%;    position: absolute;    left: 50%;    margin: -10px 0 0 -10px;    top: 50%;   }   /*.cycle-wheel-back .inner-disc:after {    content: "";    background: #666;    width: 20px;    height: 20px;    border-radius: 50%;    position: absolute;    left: 50%;    margin: -10px 0 0 -10px;    top: 50%;   }*/      .inner-disc-2 {    /*画轮胎中心轴的圆圈*/    background: transparent;    width: 6px;    height: 6px;    border: 2px solid #FFF;    border-radius: 50%;    position: absolute;    left: 50%;    margin: -5px 0 0 -5px;    top: 50%;   }      .cycle-wheel-back .inner-disc-2:after {    /*插入后轮轴心齿轮*/    content: "";    background: transparent;    width: 18px;    height: 18px;    border-radius: 50%;    position: absolute;    left: 50%;    margin: -13px 0 0 -13px;    top: 50%;    border: 4px dotted #666;   }   .cycle-body {    margin-left: 125px;   }   .front-wheel-frame {/*前叉*/    background: #5E999B;    width: 8px;    height: 180px;    position: absolute;    z-index: 2;    transform: rotate(-25deg);    margin: -72px 0 0 260px;   }   .top-frame {/*上管*/    background: #5E999B;    width: 180px;    height: 8px;    position: absolute;    z-index: 2;    margin: -20px 0 0 62px;    transform: rotate(-8deg);   }   .front-frame {/*下管*/    background: #5E999B;    width: 8px;    height: 160px;    position: absolute;    z-index: 2;    transform: rotate(41deg);    margin: -36px 0 0 189px;   }   .center-frame { /*坐杆*/    background: #5E999B;    width: 8px;    height: 205px;    position: absolute;    z-index: 2;    transform: rotate(-33deg);    margin: -84px 0 0 75px;   }   .back-frame {/*后管*/    background: #5E999B;    width: 8px;    height: 136px;    position: absolute;    z-index: 2;    transform: rotate(39deg);    margin: -23px 0 0 19px;   }   .bottom-frame {/*后叉or平管*/    background: #5E999B;    width: 159px;    height: 8px;    position: absolute;    z-index: 2;    margin: 100px 0 0 -16px;   }   .handlebar-front {/*车把*/    width: 60px;    height: 8px;    background: #5E999B;    z-index: 2;    position: absolute;    margin: -68px 0 0 222px;    border-top-left-radius: 3px;    border-bottom-left-radius: 3px;   }   .handlebar-curve {/*车把手*/    width: 40px;    height: 40px;    border: 8px solid #666;    border-top-right-radius: 100%;    border-bottom-right-radius: 100%;    border-bottom-left-radius: 100%;    background: transparent;    position: absolute;    margin: -68px 0 0 258px;    border-left: 8px solid transparent;    border-top: 8px solid #666;    border-bottom: 8px solid #666;   }   /*座垫*/   .seat {     width: 50px;    height: 10px;    background: #666;    border-radius: 44%;    position: absolute;    margin: -73px 0 0 15px;   }      .seat:after {    width: 0px;    height: 0px;    border-style: solid;    border-width: 0 40px 16px 40px;    border-color: transparent transparent #666 transparent;    content: "";    position: absolute;    z-index: 3;    transform: rotate(-12deg);    position: absolute;    border-radius: 100%;    margin: 0 0 0 -26px;   }   .seat:before {    width: 0px;    height: 0px;    border-style: solid;    border-width: 0 40px 16px 40px;    border-color: transparent transparent #666 transparent;    content: "";    position: absolute;    z-index: 3;    transform: rotate(179deg);    position: absolute;    border-radius: 100%;    margin: 0 0 0 -26px;   }   .seat span {    width: 32px;    height: 19px;    background: #666;    border-radius: 100%;    position: absolute;    margin: 1px 0 0 -22px;    transform: rotate(-11deg);   }   /*去掉中心轴的*/   .chain-rotation {    position: absolute;    z-index: 16;   }   /*中心轴*/   .chain-disc-inner {    background: #666;    width: 18px;    height: 18px;    border-radius: 50%;    position: absolute;    margin: 2px;    z-index: 4;   }   .chain-disc-outer {    background: #FFF;    width: 22px;    height: 22px;    border: 5px solid #666;    border-radius: 50%;    position: absolute;    margin: 87px 0 0 250px;    z-index: 3;    content: "";   }   /*牙盘*/   .chain-rods {    height: 70px;    width: 6px;    background: #666;    position: absolute;    margin: 67px 0 0 263px;    z-index: 15;    animation: wheel-rotate 2s linear infinite;   }   .chain-rods:before {    content: "";    height: 70px;    width: 6px;    background: #666;    position: absolute;    transform: rotate(120deg);   }   .chain-rods:after {    content: "";    height: 70px;    width: 6px;    background: #666;    position: absolute;    transform: rotate(240deg);    -webkit-transform: rotate(240deg);    -moz-transform: rotate(240deg);   }   .outer-axle {    height: 70px;    width: 70px;    border-radius: 50%;    background: transparent;    border: 5px solid #666;    position: absolute;    margin: 62px 0 0 226px;    z-index: 3;   }      .outer-axle:after {    content: "";    height: 74px;    width: 74px;    border-radius: 50%;    background: transparent;    border: 5px dotted #666;    margin: -7px;    position: absolute;    z-index: 3;    animation: wheel-rotate 2s linear infinite;   }   /*车链子*/   .chain-up {    background-color: transparent;    background-size: 8px 2px;    background-position: 0 0, 30px 30px;    width: 155px;    height: 4px;    position: absolute;    z-index: 9;    background: #EEE;    transform: rotate(-11deg);    margin: 76px 0 0 98px;   }   .chain-up:before {    content: "";    background-color: transparent;    background-image: linear-gradient(90deg, #666 25%, transparent 25%, transparent 75%, #666 75%, #666);    background-size: 8px 2px;    background-position: 0 0, 30px 30px;    width: 155px;    height: 4px;    animation: chainUp 2s linear infinite;    position: absolute;    z-index: 10;   }   .chain-bottom {    background-color: transparent;    background-size: 8px 2px;    background-position: 0 0, 30px 30px;    width: 155px;    height: 4px;    position: absolute;    z-index: 9;    background: #EEE;    -webkit-transform: rotate(9deg);    -moz-transform: rotate(9deg);    transform: rotate(9deg);    margin: 127px 0 0 98px;   }      .chain-bottom:before {    content: "";    background-color: transparent;    background-image: linear-gradient(90deg, #666 25%, transparent 25%, transparent 75%, #666 75%, #666);    background-size: 8px 2px;    background-position: 0 0, 30px 30px;    width: 155px;    height: 4px;    animation: chainDown 2s linear infinite;    position: absolute;    z-index: 10;   }   /*脚踏*/   .pedal-rod {    height: 120px;    width: 6px;    background: #666;    position: absolute;    margin: -25px 0 0 0px;   }      .pedal-rod:before {    width: 40px;    height: 10px;    background: #666;    position: absolute;    margin: 10px;    content: "";    margin: -7px -17px;    animation: pedal1 2s linear infinite;   }      .pedal-rod:after {    width: 40px;    height: 10px;    background: #666;    position: absolute;    margin: 10px;    content: "";    margin: 119px -17px;    animation: pedal2 2s linear infinite;   }   /*水壶架*/   .bottle-holder {    width: 20px;    height: 36px;    background: #daeded;    border: 3px solid #5E999B;    position: absolute;    margin: 54px 0 0 -25px;   }      .bottle-holder:after {    width: 20px;    height: 3px;    content: "";    background: #5E999B;    position: absolute;    margin: 24px 0 0 0px;   }   /*水壶*/   .bottle-holder:before {    background-color: #daeded;    width: 18px;    height: 10px;    border-radius: 30% / 100%;    border-bottom-left-radius: 0;    border-bottom-right-radius: 0;    content: "";    position: absolute;    margin-top: -13px;    border: 1px solid #98baba;    border-bottom: 0;   }   .bottle-holder span {    position: absolute;    width: 9px;    height: 4px;    background: #666;    margin: -17px 0 0 5px;   }   /*车链子动画*/   @keyframes chainUp {    0% {     background-position: 0 25%;    }    100% {     background-position: 100% 0;    }   }   @keyframes chainDown {    0% {     background-position: 100% 0;    }    100% {     background-position: 0 25%;    }   }   /*脚踏动画*/   @keyframes pedal1 {    0% {     transform: rotate(00deg);    }    25% {     transform: rotate(-140deg);    }    50% {     transform: rotate(-180deg);    }    75% {     transform: rotate(-240deg);    }    100% {     transform: rotate(-360deg);    }   }   @keyframes pedal2 {    0% {     transform: rotate(00deg);    }    25% {     transform: rotate(-60deg);    }    50% {     transform: rotate(-180deg);    }    75% {     transform: rotate(-340deg);    }    100% {     transform: rotate(-360deg);    }   }      

相信看了本文案例你已经掌握了方法,更多精彩请关注创想鸟其它相关文章!

推荐阅读:

css3多类选择器使用详解

css做出波纹动画

css的background-attachment进阶使用方法

以上就是css3实现动画自行车效果的详细内容,更多请关注创想鸟其它相关文章!

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/1609620.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2025年12月24日 00:52:59
下一篇 2025年12月24日 00:53:15

相关推荐

  • CSS画出红色爱心

    这次给大家带来CSS画出红色爱心,CSS画出红色爱心的注意事项有哪些,下面就是实战案例,一起来看一下。 第一步: 先画一个正方形。如图: css画桃心 .heart-body { width: 500px; margin: 100px auto; position: relative; } .hea…

    2025年12月24日 好文分享
    000
  • css3的新属性box-sizing详解

    这次给大家带来css3的新属性box-sizing详解,css3属性box-sizing的注意事项有哪些,下面就是实战案例,一起来看一下。 在了解box-sizing之前,让我们来稍稍回顾一下盒子模型,模型分为:标准盒模型+IE盒模型。那这有什么区别呢?见图所示: 从上图可以看到标准 w3c 盒子模…

    2025年12月24日 好文分享
    000
  • CSS3实现鼠标悬停时边框旋转特效

    这次给大家带来CSS3实现鼠标悬停时边框旋转特效,CSS3实现鼠标悬停时边框旋转特效的注意事项有哪些,下面就是实战案例,一起来看一下。 纯CSS3实现的鼠标悬停时边框旋转的效果: 实现代码如下,代码中注释已经比较详细,就不再多说了: Document body { width: 40rem; hei…

    2025年12月24日
    000
  • CSS3中nth-child与nth-of-type的区别以及使用技巧

    这次给大家带来CSS3中nth-child与nth-of-type的区别以及使用技巧,使用nth-child与nth-of-type的注意事项有哪些,下面就是实战案例,一起来看一下。 CSS3中nth-child与nth-of-type的区别其实很简单::nth-of-type为什么要叫:nth-o…

    2025年12月24日
    000
  • css样式中的border-image使用详解

    这次给大家带来css样式中的border-image使用详解,使用css样式中border-image的注意事项有哪些,下面就是实战案例,一起来看一下。 border-image-source 属性设置边框的图片的路径[none | ] p { border: 20px solid #000; bo…

    好文分享 2025年12月24日
    000
  • CSS与HTML常见的使用误区

    这次给大家带来CSS与HTML常见的使用误区,CSS与HTML使用的注意事项有哪些,下面就是实战案例,一起来看一下。 误区一.多p症  Home About Concact 上述使用使用多余的p标签现状,就称为“多p症”,理应简化成下 Home About Concact 误区二.多类class症 …

    2025年12月24日
    000
  • html+css中的四种隐藏方式

    这次给大家带来html+css中的四种隐藏方式,html+css中隐藏方式的注意事项有哪些,下面就是实战案例,一起来看一下。 1.opacity:0只是把元素隐藏起来了 ,但是还是占有布局,所以还是对布局有影响 snda:opacity:0只是把元素隐藏起来了 ,但是还是占有布局,所以还是对布局有影…

    好文分享 2025年12月24日
    000
  • CSS实现一级导航栏

    这次给大家带来CSS实现一级导航栏,CSS实现一级导航栏的注意事项有哪些,下面就是实战案例,一起来看一下。 第一步:引入css样式表,新建一个id为nav的层,使用、、标签来制作完成效果。 首页 首页 首页 首页 首页 第二步设置CSS样式: 1.设置nav的属性 #nav{ width: 500p…

    2025年12月24日
    000
  • CSS有几种实现三栏布局的方法

    这次给大家带来CSS有几种实现三栏布局的方法,CSS实现三栏布局的注意事项有哪些,下面就是实战案例,一起来看一下。 前言 其实不管是三栏布局还是两栏布局都是我们在平时项目里经常使用的,也许你不知道什么事三栏布局什么是两栏布局但实际已经在用,或许你知道三栏布局的一种或两种方法,但实际操作中也只会依赖那…

    好文分享 2025年12月24日
    000
  • 用css实现浮雕效果

    这次给大家带来用css实现浮雕效果,用css实现浮雕效果的注意事项有哪些,下面就是实战案例,一起来看一下。 前言 最近在看百度地图看到了一个效果,感觉这个效果用在网页上应该蛮赞的,于是就学习了一下。 效果图如下: 浮雕效果需要用到伸缩盒的知识(flex) flex在chrome是完全支持的,要加-w…

    2025年12月24日
    000
  • CSS怎么处理浏览器的默认样式

    这次给大家带来CSS怎么处理浏览器的默认样式,CSS处理浏览器的默认样式注意事项有哪些,下面就是实战案例,一起来看一下。 发现 最近在调整网页的格式发现网页底部总是有一个10像素左右的空格。 通过用Chrome流浪器的审查元素发现有一个叫user agent stylesheet设置整个form的m…

    2025年12月24日
    000
  • css中px、em和rem使用详解

    相信每位前端工程师们都有这么一个体会,国内的设计师大都喜欢用px,而国外的网站大都喜欢用em和rem,那么三者有什么区别,又各自有什么优劣呢?下面这篇文章小编就来给大家详细介绍关于css中px、em和rem的区别,需要的朋友可以参考借鉴,下面来一起看看吧。 前言 em 和 rem 都是灵活可扩展的单…

    好文分享 2025年12月24日
    000
  • CSS3实现点击放大的动画实例

    这次给大家带来CSS3实现点击放大的动画实例,CSS3实现点击放大动画实例的注意事项有哪些,下面就是实战案例,一起来看一下。 前言 最近在工作中遇到一个需求,实现的效果是当点击商品图片右上的收藏按钮触发放大动画,后来通过查找相关的资料,发现利用css3:@keyframes animation即可实…

    2025年12月24日
    000
  • css做出波纹动画

    这次给大家带来css做出波纹动画,css做出波纹动画的注意事项有哪些,下面就是实战案例,一起来看一下。 效果图如下 实例代码如下 body{ background: #000; } .box{ width: 100%; height: 600px; background: #000; } .vr {…

    2025年12月24日
    000
  • CSS的background-attachment使用详解

    这次给大家带来,的注意事项有哪些,下面就是实战案例,一起来看一下。 一、background-attachment属性 在CSS中,使用背景附件属性background-attachment可以设置背景图像是随对象滚动还是固定不动。 语法: background-attachment:scroll/…

    2025年12月24日
    000
  • css3多类选择器使用详解

    这次给大家带来css3多类选择器使用详解,使用css3多类选择器的注意事项有哪些,下面就是实战案例,一起来看一下。 下面一段代码给大家介绍css3类选择器之结合元素选择器和多类选择器用法,具体代码如下所示: Title .p2{font-size:30px;} /*结合元素选择器*/ p.p1{co…

    好文分享 2025年12月24日
    000
  • React与CSS3实现微信拆红包动画

    这次给大家带来React与CSS3实现微信拆红包动画,React与CSS3实现微信拆红包动画的注意事项有哪些,下面就是实战案例,一起来看一下。 微信红包曾经引爆过一系列的营销热潮,相信大家对于这种红包形式并不陌生,这里本着娱乐至上的精神用React简单地实现了拆红包的动画效果,供大家一起交流学习 用…

    2025年12月24日
    000
  • 用CSS3实现头像旋转效动画

    这次给大家带来用CSS3实现头像旋转效动画,用CSS3实现头像旋转效动画的注意事项有哪些,下面就是实战案例,一起来看一下。 鼠标未放上效果: 鼠标放上之后旋转效果: transition: all 2.0s;表示所有的属性变换在2秒内完成; transform: rotate(360deg);表示图…

    2025年12月24日
    000
  • 在CSS实现Footer置底的几种方式

    这次给大家带来在CSS实现Footer置底的几种方式,在CSS实现Footer置底的注意事项有哪些,下面就是实战案例,一起来看一下。 页脚置底(Sticky footer)就是让网页的footer部分始终在浏览器窗口的底部。 当网页内容足够长以至超出浏览器可视高度时,页脚会随着内容被推到网页底部;但…

    2025年12月24日
    000
  • CSS3实现进度条的俩种方法

    这次给大家带来CSS3实现进度条的俩种方法,CSS3实现进度条的注意事项有哪些,下面就是实战案例,一起来看一下。 效果图如下:     第一种姿势如下  先上代码 /*对应CSS*/ #progress{ width: 300px; height: 30px; border:1px solid #c…

    2025年12月24日 好文分享
    000

发表回复

登录后才能评论
关注微信