svg+css实现游乐场摩天轮旋转动画效果代码

代码语言:html

所属分类:动画

代码描述:svg+css实现游乐场摩天轮旋转动画效果代码

代码标签: svg css 摩天轮 游乐场

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
<style>
    /*svg colors */

.cls-1 {
  fill: #e8f3e2;
}

.cls-2 {
  fill: #faf4a8;
}

.cls-3 {
  fill: #cac277;
}

.cls-4 {
  fill: #f3ca76;
}

.cls-5 {
  fill: #fdf387;
}

.cls-6 {
  fill: #c2e4d8;
}

.cls-7 {
  fill: #aedccd;
}

.cls-8 {
  opacity: 0.5;
}

.cls-10,
.cls-16,
.cls-17,
.cls-22,
.cls-32,
.cls-38,
.cls-39,
.cls-48,
.cls-50,
.cls-56,
.cls-9 {
  fill: none;
}

.cls-16,
.cls-17,
.cls-9 {
  stroke: #dab6c4;
}

.cls-10,
.cls-18,
.cls-19,
.cls-32,
.cls-38,
.cls-39,
.cls-48,
.cls-50,
.cls-56,
.cls-9 {
  stroke-miterlimit: 10;
}

.cls-10 {
  stroke: #e6d0d8;
}

.cls-11 {
  fill: #e7d0d8;
}

.cls-12 {
  fill: #dab6c4;
}

.cls-13,
.cls-18 {
  fill: #b5d780;
}

.cls-14 {
  fill: #9cb17e;
}

.cls-15 {
  fill: #f16a83;
}

.cls-16,
.cls-17 {
  stroke-linejoin: bevel;
  stroke-width: 2px;
}

.cls-17 {
  stroke-dasharray: 14.92 4.97;
}

.cls-18 {
  stroke: #b5d780;
}

.cls-18,
.cls-19 {
  stroke-width: 0.25px;
}

.cls-19,
.cls-21 {
  fill: #aec58b;
}

.cls-19 {
  stroke: #aec58b;
}

.cls-20 {
  fill: #7d8a71;
}

.cls-23 {
  fill: #f69eac;
}

.cls-24 {
  fill: #c38f98;
}

.cls-25 {
  fill: #816872;
}

.cls-26 {
  fill: #6d6066;
}

.cls-27 {
  fill: #806871;
}

.cls-28 {
  fill: #dbbf53;
}

.cls-29 {
  fill: #bfcf30;
}

.cls-30 {
  fill: #b29ea7;
}

.cls-31 {
  fill: #8d6876;
}

.cls-32,
.cls-48 {
  stroke: #8d6876;
}

.cls-32 {
  opacity: 0.6;
}

.cls-33 {
  fill: #d2a849;
}

.cls-34 {
  fill: #e0b24d;
}

.cls-35 {
  fill: #bf6872;
}

.cls-36 {
  fill: #f0bf53;
}

.cls-37 {
  fill: #c6c49e;
}

.cls-38 {
  stroke: #f69eac;
}

.cls-39 {
  stroke: #c38f98;
}

.cls-40 {
  fill: #c5c072;
}

.cls-41 {
  fill: #fdf164;
}

.cls-42 {
  fill: #dbedd1;
}

.cls-43 {
  fill: #b2beaf;
}

.cls-44 {
  fill: #feeb19;
}

.cls-45 {
  fill: #9998c8;
}

.cls-46 {
  fill: #fef5b1;
}

.cls-47 {
  fill: #fac1c4;
}

.cls-49 {
  fill: #bfa264;
}

.cls-50 {
  stroke: #806871;
}

.cls-51 {
  fill: #ce9d2b;
}

.cls-52 {
  fill: #c06975;
}

.cls-53 {
  fill: #e0efd3;
}

.cls-54 {
  fill: #b9e1d2;
}

.cls-55 {
  fill: #fff;
}

.cls-56 {
  stroke: #231f20;
}

.cls-57 {
  fill: #ffefb8;
}

.cls-58 {
  fill: #dfedc9;
}

.cls-59 {
  fill: #f6d695;
}

.cls-60 {
  fill: #fcd6d9;
}

.cls-61 {
  fill: #a48691;
}

.cls-62 {
  fill: #eddee3;
}

.cls-63 {
  fill: #fcf8ca;
}

.cls-64 {
  fill: #b8b2d8;
}

.cls-65 {
  fill: #eff7ea;
}

.cls-66 {
  fill: #fef7b7;
}

.cls-67 {
  fill: #fee9a0;
}

.cls-99 {
  fill: #ddd162;
}

body {max-width: 1440px;}

#needles {
  -webkit-animation: rotate 5s linear infinite;
          animation: rotate 5s linear infinite;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg)
  }
  100% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg)
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg)
  }
  100% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg)
  }
}

#arms {
  -webkit-animation: rotate-out 5s linear infinite;
          animation: rotate-out 5s linear infinite;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

@-webkit-keyframes rotate-out {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg)
  }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg)
  }
}

@keyframes rotate-out {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg)
  }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg)
  }
}

#cabins {
  -webkit-animation: cabin-transit 5s linear infinite;
          animation: cabin-transit 5s linear infinite;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

@-webkit-keyframes cabin-transit {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg)
  }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg)
  }
}

@keyframes cabin-transit {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg)
  }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg)
  }
}

.cabin {
  -webkit-animation: cabin-transform 5s linear infinite;
          animation: cabin-transform 5s linear infinite;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

@-webkit-keyframes cabin-transform {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg)
  }
}

@keyframes cabin-transform {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg)
  }
}

#balloon,
#bunch_of_balloons1,
#bunch_of_balloons {
  -webkit-animation: balloon-anim 5s linear infinite;
          animation: balloon-anim 5s linear infinite;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

@-webkit-keyframes balloon-anim {
  0% {
    -webkit-transform: rotate(0deg) translate(0);
            transform: rotate(0deg) translate(0)
  }
  25% {
    -webkit-transform: rotate(2deg) translateY(5px);
            transform: rotate(2deg) translateY(5px)
  }
  50% {
    -webkit-transform: rotate(-2deg) translateY(-5px);
            transform: rotate(-2deg) translateY(-5px)
  }
  75% {
    -webkit-transform: rotate(-2deg) translateY(5px);
            transform: rotate(-2deg) translateY(5px)
  }
  100% {
    -webkit-transform: rotate(0deg) translate(0);
            transform: rotate(0deg) translate(0)
  }
}

@keyframes balloon-anim {
  0% {
    -webkit-transform: rotate(0deg) translate(0);
            transform: rotate(0deg) translate(0)
  }
  25% {
    -webkit-transform: rotate(2deg) translateY(5px);
            transform: rotate(2deg) translateY(5px)
  }
  50% {
    -webkit-transform: rotate(-2deg) translateY(-5px);
            transform: rotate(-2deg) translateY(-5px)
  }
  75% {
    -webkit-transform: rotate(-2deg) translateY(5px);
            transform: rotate(-2deg) translateY(5px)
  }
  100% {
    -webkit-transform: rotate(0deg) translate(0);
            transform: rotate(0deg) translate(0)
  }
}

#clouds-front {
  -webkit-animation: cloud-transit infinite ease-in-out 5s;
          animation: cloud-transit infinite ease-in-out 5s;
}

#clouds-back {
  -webkit-animation: cloud-transit-2 infinite ease-out 5s;
          animation: cloud-transit-2 infinite ease-out 5s;
}

@-webkit-keyframes cloud-transit {
  0% {
    opacity: 0
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-5%);
            transform: translateX(-5%);
    opacity: 0;
  }
}

@keyframes cloud-transit {
  0% {
    opacity: 0
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-5%);
            transform: translateX(-5%);
    opacity: 0;
  }
}

@-webkit-keyframes cloud-transit-2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(5%);
            transform: translateX(5%);
  }
}

@keyframes cloud-transit-2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(5%);
            transform: translateX(5%);
  }
}
</style>

</head>

<body>

    <svg id="sky_day" data-name="sky day" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 1295.87 804.79">
  <defs>
  </defs>
  <title>Amusement park flat by Lina</title>
  <g>
    <rect id="day" class="cls-1" x="-8.79" y="-27.96" width="1342.08" height="860.72"></rect>
    <g id="sun">
      <path class="cls-2" d="M152.93,208.54a90.55,90.55,0,0,0,0-181.09"></path>
      <path class="cls-99" d="M152.93,27.44a90.55,90.55,0,1,0,0,181.09"></path>
      <path class="cls-4" d="M152.93,182a64,64,0,1,0,0-128.05"></path>
      <path class="cls-5" d="M152.93,54a64,64,0,0,0,0,128.05"></path>
    </g>
    <g id="clouds-front">
      <g id="cloud-1" class="cloud-all">
        <path class="cls-6" d="M899.69,71.14a26.77,26.77,0,0,0-3,0c-8.74,0-15.84,4.89-16.61,11.11a28.73,28.73,0,0,0-10.76-2c-12.24,0-22.17,7.22-22.17,16.13,0,0,0,.07,0,0.1-9.18,2.27-15.78,8.58-15.78,16,0,9.36,10.42,16.94,23.28,16.94H899.5Z"></path>
        <path class="cls-7" d="M899.49,71.14a23.27,23.27,0,0,1,2.81,0c8.74,0,15.84,4.89,16.61,11.11a28.73,28.73,0,0,1,10.76-2c12.24,0,22.17,7.22,22.17,16.13,0,0,0,.07,0,0.1,9.18,2.27,15.78,8.58,15.78,16,0,9.36-10.42,16.94-23.28,16.94H899.49V71.14Z"></path>
      </g>
      <g id="cloud-4" class="cloud-all" data-name="bush">
        <path class="cls-6" d="M1151.17,173.76a12.85,12.85,0,0,0-1.91-.14c-5.81,0-10.53,4-11,9.17a15.89,15.89,0,0,0-7.15-1.68c-8.14,0-14.73,6-14.73,13.32,0,0,0,.06,0,0.09-6.1,1.88-10.49,7.09-10.49,13.23,0,7.73,6.93,14,15.48,14h30Z"></path>
        <path class="cls-7" d="M1151.08,173.75a12.8,12.8,0,0,1,1.91-.13c5.81,0,10.53,4,11,9.17a15.89,15.89,0,0,1,7.15-1.68c8.14,0,14.73,6,14.73,13.32,0,0,0,.06,0,0.09,6.1,1.88,10.49,7.09,10.49,13.23,0,7.73-6.93,14-15.48,14h-29.81Z"></path>
      </g>
      <g id="cloud-6" class="cloud-all" data-name="bush">
        <path class="cls-6" d="M361,176.6a34.45,34.45,0,0,0-3.83,0c-9.72,0-17.61,6.12-18.46,13.91a28.82,28.82,0,0,0-12-2.55c-13.61,0-24.64,9-24.64,20.21,0,0,0,.09,0,0.13-10.2,2.85-17.55,10.75-17.55,20.08,0,11.72,11.59,21.22,25.88,21.22H361v-73Z"></path>
        <path class="cls-7" d="M360.29,176.54a23.12,23.12,0,0,1,3.13.05c9.72,0,17.61,6.12,18.46,13.91a28.82,28.82,0,0,1,12-2.55c13.61,0,24.64,9,24.64,20.21,0,0,0,.09,0,0.13C428.68,211.14,436,219,436,228.37c0,11.72-11.59,21.22-25.88,21.22H360.29V176.54Z"></path>
      </g>
    </g>
    <g id="clouds-back">
      <g id="cloud-2" class="cloud-all" data-name="bush">
        <path class="cls-6" d="M1075.9,143.73a25.08,25.08,0,0,0-3.06-.18c-9.21,0-16.69,5.29-17.5,12a29.61,29.61,0,0,0-11.34-2.2c-12.9,0-23.36,7.81-23.36,17.44,0,0,0,.07,0,0.11-9.67,2.46-16.63,9.28-16.63,17.33,0,10.12,11,18.31,24.53,18.31h47.67Z"></path>
        <path class="cls-7" d="M1075.8,143.72a23.49,23.49,0,0,1,3-.17c9.21,0,16.69,5.29,17.5,12a29.61,29.61,0,0,1,11.34-2.2c12.9,0,23.36,7.81,23.36,17.44,0,0,0,.07,0,0.11,9.67,2.46,16.63,9.28,16.63,17.33,0,10.12-11,18.31-24.53,18.31H1075.8V143.72Z"></path>
      </g>
      <g id="cloud-3" class="cloud-all" data-name="bush">
        <path class="cls-6" d="M430.87,168.15a21.33,21.33,0,0,0-2.39-.07c-6.16,0-11.15,3.82-11.7,8.68a18.49,18.49,0,0,0-7.58-1.59c-8.62,0-15.61,5.64-15.61,12.61,0,0,0,.05,0,0.08-6.46,1.78-11.12,6.71-11.12,12.52,0,7.31,7.34,13.24,16.39,13.24,4.44,0,18.37-.07,32-0.07v-45.4Z"></path>
        <path class="cls-7" d="M430.46,168.11a14.69,14.69,0,0,1,2,0c6.16,0,11.15,3.82,11.7,8.68a18.49,18.49,0,0,1,7.58-1.59c8.62,0,15.61,5.64,15.61,12.61,0,0,0,.05,0,0.08,6.46,1.78,11.12,6.71,11.12,12.52,0,7.31-7.34,13.24-16.39,13.24-4.44,0-18-.07-31.58-0.07V168.11Z"></path>
      </g>
      
      <g id="cloud-5" class="cloud-all" data-name="bush">
        <path class="cls-6" d="M539.43,64.77a31.69,31.69,0,0,0-3.17-.08c-8,0-14.45,4.52-15.15,10.27a25.88,25.88,0,0,0-9.82-1.88c-11.17,0-20.22,6.68-20.22,14.92,0,0,0,.06,0,0.1-8.37,2.1-14.4,7.94-14.4,14.83,0,8.65,9.51,15.67,21.23,15.67,5.75,0,23.87-.08,41.51-0.08V64.77Z"></path>
        <path class="cls-7" d="M538.82,64.72a20.83,20.83,0,0,1,2.57,0c8,0,14.45,4.52,15.15,10.27a25.88,25.88,0,0,1,9.82-1.88c11.17,0,20.22,6.68,20.22,14.92,0,0,0,.06,0,0.1C594.93,90.2,601,96,601,102.92c0,8.65-9.51,15.67-21.23,15.67-5.75,0-23.26-.08-40.9-0.08V64.72Z"></path>
      </g>
    </g>
    </g>
  
  
  <g id="rollercoaster" class="cls-8">
    <g id="down">
      <g id="goriz">
        <path class="cls-9" d="M109.29,327.06c-1.34,2.64-5,8-6.3,10.69-1.91-3.77-3.86-9.12-5.77-12.88-1.92,3.77-3.8,9.12-5.72,12.88l-5.75-11.3L80,337.75l-5.75-11.3-5.75,11.3-2.3-4.52"></path>
        <path class="cls-9" d="M119.81,330.26c-0.19.38-5.13,7.12-5.33,7.49-1-1.88-4.23-8.8-5.19-10.69"></path>
        <path class="cls-9" d="M131.7,352.81c-0.3-.59-3.72-8.6-5.6-12.31"></path>
        <path class="cls-9" d="M404.1,332.18l-2.82,5.57-5.73-11.3-5.73,11.3-5.73-11.3-5.74,11.3-4.59-9"></path>
        <path class="cls-9" d="M141.84,355.65c-1,1.88-3.44,6.57-4.4,8.45l-5.74-11.3L126,364.11l-5.74-11.3-5.74,11.3-5.75-11.3L103,364.11l-5.74-11.3-5.75,11.3-5.75-11.3L80,364.11l-5.75-11.3-5.75,11.3-5.75-11.3L57,364.11"></path>
        <path class="cls-9" d="M348.55,355.07l-4.58,9-1.72-3.39"></path>
        <path class="cls-9" d="M414.59,360.46l-1.85,3.64L407,352.81l-5.72,11.3-5.73-11.3-5.73,11.3-5.73-11.3-5.74,11.3-5.74-11.3-5.73,11.3-5.73-11.3-5.73,11.3-5.15-10.17"></path>
        <path class="cls-9" d="M161.54,386.32l-1.15,2.26-5.74-11.3-5.74,11.3-5.73-11.3-5.74,11.3-5.74-11.3L126,388.58l-5.74-11.3-5.74,11.3-5.75-11.3L103,388.58l-5.74-11.3-5.75,11.3-5.75-11.3L80,388.58l-5.75-11.3-5.75,11.3-5.75-11.3L57,388.58"></path>
        <path class="cls-9" d="M428.1,380.93l-3.89,7.65-5.74-11.3-5.74,11.3L407,377.29l-5.72,11.3-5.73-11.3-5.73,11.3-5.73-11.3-5.74,11.3-5.74-11.3-5.73,11.3-5.73-11.3-5.73,11.3-5.73-11.3L344,388.58l-5.73-11.3-5.73,11.3-5.73-11.3L321,388.58l-2.87-5.65"></path>
        <path class="cls-9" d="M188.52,404.77l-5.17,10.17-5.74-11.3-5.74,11.3-5.74-11.3-5.74,11.3-5.74-11.3-5.74,11.3-5.73-11.3-5.74,11.3-5.74-11.3L126,414.94l-5.74-11.3-5.74,11.3-5.75-11.3L103,414.94l-5.74-11.3-5.75,11.3-5.75-11.3L80,414.94l-5.75-11.3-5.75,11.3-5.75-11.3L57,414.94"></path>
        <path class="cls-9" d="M194.83,414.94l-5.16-10.17"></path>
        <path class="cls-9" d="M449.64,410l-2.49,4.9-5.73-11.3-5.73,11.3-5.73-11.3-5.73,11.3-5.74-11.3-5.74,11.3L407,403.64l-5.72,11.3-5.73-11.3-5.73,11.3-5.73-11.3-5.74,11.3-5.74-11.3-5.73,11.3-5.73-11.3-5.73,11.3-5.73-11.3L344,414.94l-5.73-11.3-5.73,11.3-5.73-11.3L321,414.94l-5.74-11.3-5.73,11.3-5.73-11.3-5.73,11.3-5.73-11.3-5.73,11.3-5.74-11.3-5.74,11.3-2.87-5.65"></path>
        <path class="cls-9" d="M538.9,414.94l-3-5.94"></path>
        <path class="cls-9" d="M511.14,431.78L516,441.3,521.7,430l5.73,11.3,5.73-11.3c2.11,4.14,4.35,8.21,6.46,12.35"></path>
        <path class="cls-9" d="M57,441.3L62.77,430l5.75,11.3L74.27,430,80,441.3,85.76,430l5.75,11.3L97.25,430,103,441.3l5.74-11.3,5.75,11.3,5.74-11.3L126,441.3,131.7,430l5.74,11.3,5.74-11.3,5.73,11.3,5.74-11.3,5.74,11.3,5.74-11.3,5.74,11.3,5.74-11.3,5.74,11.3L189.1,430l5.74,11.3,5.74-11.3,5.74,11.3,5.74-11.3,5.74,11.3,5.74-11.3,5.74,11.3L235,430l5.74,11.3,5.74-11.3,5.74,11.3L258,430l5.73,11.3,5.73-11.3,5.74,11.3L280.9,430l5.74,11.3,5.73-11.3,5.73,11.3,5.73-11.3,5.73,11.3L315.3,430,321,441.3l5.74-11.3,5.73,11.3,5.73-11.3L344,441.3,349.7,430l5.73,11.3,5.73-11.3,5.73,11.3,5.73-11.3,5.74,11.3,5.74-11.3,5.73,11.3,5.73-11.3,5.73,11.3L407,430l5.74,11.3,5.74-11.3,5.74,11.3,5.73-11.3,5.73,11.3,5.73-11.3,5.73,11.3,5.74-11.3,5.74,11.3,5.74-11.3,5.73,11.3,5.73-11.3,5.73,11.3,5.73-11.3L493,441.3l5.74-11.3,5.74,11.3,4.83-9.51"></path>
        <path class="cls-9" d="M539.31,468.91c-1.91-3.77-4.23-8.78-6.14-12.55l-5.73,11.3-5.73-11.3L516,467.66l-5.73-11.3-5.74,11.3-5.74-11.3L493,467.66l-5.73-11.3-5.73,11.3-5.73-11.3-5.73,11.3-5.73-11.3-5.74,11.3-5.74-11.3-5.74,11.3-5.73-11.3-5.73,11.3-5.73-11.3-5.73,11.3-5.74-11.3-5.74,11.3L407,456.36l-5.72,11.3-5.73-11.3-5.73,11.3-5.73-11.3-5.74,11.3-5.74-11.3-5.73,11.3-5.73-11.3-5.73,11.3-5.73-11.3L344,467.66l-5.73-11.3-5.73,11.3-5.73-11.3L321,467.66l-5.74-11.3-5.73,11.3-5.73-11.3-5.73,11.3-5.73-11.3-5.73,11.3-5.74-11.3-5.74,11.3-5.74-11.3-5.73,11.3L258,456.36l-5.74,11.3-5.74-11.3-5.74,11.3L235,456.36l-5.74,11.3-5.74-11.3-5.74,11.3-5.74-11.3-5.74,11.3-5.74-11.3-5.74,11.3-5.74-11.3-5.74,11.3-5.74-11.3-5.74,11.3-5.74-11.3-5.74,11.3-5.74-11.3-5.74,11.3-5.73-11.3-5.74,11.3-5.74-11.3L126,467.66l-5.74-11.3-5.74,11.3-5.75-11.3L103,467.66l-5.74-11.3-5.75,11.3-5.75-11.3L80,467.66l-5.75-11.3-5.75,11.3-5.75-11.3L57,467.66"></path>
        <path class="cls-9" d="M538.9,494l-5.73-11.3L527.44,494l-5.73-11.3L516,494l-5.73-11.3L504.5,494l-5.74-11.3L493,494l-5.73-11.3L481.56,494l-5.73-11.3L470.09,494l-5.73-11.3L458.62,494l-5.74-11.3L447.15,494l-5.73-11.3L435.68,494l-5.73-11.3L424.21,494l-5.74-11.3L412.74,494,407,482.72,401.28,494l-5.73-11.3L389.82,494l-5.73-11.3L378.35,494l-5.74-11.3L366.88,494l-5.73-11.3L355.43,494l-5.73-11.3L344,494l-5.73-11.3L332.51,494l-5.73-11.3L321,494l-5.74-11.3L309.57,494l-5.73-11.3L298.1,494l-5.73-11.3L286.64,494l-5.74-11.3L275.16,494l-5.74-11.3L263.69,494,258,482.72,252.22,494l-5.74-11.3L240.74,494,235,482.72,229.27,494l-5.74-11.3L217.79,494l-5.74-11.3L206.32,494l-5.74-11.3L194.83,494l-5.74-11.3L183.36,494l-5.74-11.3L171.87,494l-5.74-11.3L160.39,494l-5.74-11.3L148.91,494l-5.73-11.3L137.44,494l-5.74-11.3L126,494l-5.74-11.3L114.48,494l-5.75-11.3L103,494l-5.74-11.3L91.5,494l-5.75-11.3L80,494l-5.75-11.3L68.52,494l-5.75-11.3L57,494"></path>
        <path class="cls-9" d="M538.9,518.49l-5.73-11.3-5.73,11.3-5.73-11.3L516,518.49l-5.73-11.3-5.74,11.3-5.74-11.3L493,518.49l-5.73-11.3-5.73,11.3-5.73-11.3-5.73,11.3-5.73-11.3-5.74,11.3-5.74-11.3-5.74,11.3-5.73-11.3-5.73,11.3-5.73-11.3-5.73,11.3-5.74-11.3-5.74,11.3L407,507.19l-5.72,11.3-5.73-11.3-5.73,11.3-5.73-11.3-5.74,11.3-5.74-11.3-5.73,11.3-5.73-11.3-5.73,11.3-5.73-11.3L344,518.49l-5.73-11.3-5.73,11.3-5.73-11.3L321,518.49l-5.74-11.3-5.73,11.3-5.73-11.3-5.73,11.3-5.73-11.3-5.73,11.3-5.74-11.3-5.74,11.3-5.74-11.3-5.73,11.3L258,507.19l-5.74,11.3-5.74-11.3-5.74,11.3L235,507.19l-5.74,11.3-5.74-11.3-5.74,11.3-5.74-11.3-5.74,11.3-5.74-11.3-5.74,11.3-5.74-11.3-5.74,11.3-5.74-11.3-5.74,11.3-5.74-11.3-5.74,11.3-5.74-11.3-5.74,11.3-5.73-11.3-5.74,11.3-5.74-11.3L126,518.49l-5.74-11.3-5.74,11.3-5.75-11.3L103,518.49l-5.74-11.3-5.75,11.3-5.75-11.3L80,518.49l-5.75-11.3-5.75,11.3-5.75-11.3L57,518.49"></path>
        <path class="cls-9" d="M539.07,542.62c-1.79-.59-4.63-8.46-5.9-11L527.44,543l-5.73-11.3L516,543l-5.73-11.3L504.5,543l-5.74-11.3L493,543l-5.73-11.3L481.56,543l-5.73-11.3L470.09,543l-5.73-11.3L458.62,543l-5.74-11.3L447.15,543l-5.73-11.3L435.68,543l-5.73-11.3L424.21,543l-5.74-11.3L412.74,543,407,531.67,401.28,543l-5.73-11.3L389.82,543l-5.73-11.3L378.35,543l-5.74-11.3L366.88,543l-5.73-11.3L355.43,543l-5.73-11.3L344,543l-5.73-11.3L332.51,543l-5.73-11.3L321,543l-5.74-11.3L309.57,543l-5.73-11.3L298.1,543l-5.73-11.3L286.64,543l-5.74-11.3L275.16,543l-5.74-11.3L263.69,543,258,531.67,252.22,543l-5.74-11.3L240.74,543,235,531.67,229.27,543l-5.74-11.3L217.79,543l-5.74-11.3L206.32,543l-5.74-11.3L194.83,543l-5.74-11.3L183.36,543l-5.74-11.3L171.87,543l-5.74-11.3L160.39,543l-5.74-11.3L148.91,543l-5.73-11.3L137.44,543l-5.74-11.3L126,543l-5.74-11.3L114.48,543l-5.75-11.3L103,543l-5.74-11.3L91.5,543l-5.75-11.3L80,543l-5.75-11.3L68.52,543l-5.75-11.3L57,543"></path>
        <path class="cls-9" d="M126.1,338.84c-1.34,2.64-4.44,9.45-5.78,12.09l-5.74-11.3-5.74,11.3-5.75-11.3-5.74,11.3-5.74-11.3-5.75,11.3-5.75-11.3-5.74,11.3-5.75-11.3-5.75,11.3-4-7.91"></path>
        <path class="cls-9" d="M408.94,347.29l-1.85,3.64-5.74-11.3-5.72,11.3-5.73-11.3-5.73,11.3-5.73-11.3-5.74,11.3L367,339.63l-5.73,11.3-2.87-5.65"></path>
        <path class="cls-9" d="M148.45,366.23c-1.34,2.64-3.84,6.54-5.18,9.18l-5.73-11.3-5.74,11.3-5.74-11.3-5.74,11.3-5.74-11.3-5.74,11.3-5.75-11.3-5.74,11.3-5.74-11.3-5.75,11.3-5.75-11.3-5.74,11.3-5.75-11.3-5.75,11.3-5.75-11.3"></path>
        <path class="cls-9" d="M331.09,367.08l-4.22,8.32-1.15-2.26"></path>
        <path class="cls-9" d="M421,370.63l-2.42,4.77-5.74-11.3-5.74,11.3-5.74-11.3-5.72,11.3-5.73-11.3-5.73,11.3-5.73-11.3-5.74,11.3L367,364.11l-5.73,11.3-5.73-11.3-5.73,11.3-5.73-11.3-5.73,11.3-4.82-9.51"></path>
        <path class="cls-9" d="M170.24,393.85l-4,7.91-5.74-11.3-5.74,11.3L149,390.46l-5.74,11.3-5.73-11.3-5.74,11.3-5.74-11.3-5.74,11.3-5.74-11.3-5.74,11.3-5.75-11.3-5.74,11.3-5.74-11.3-5.75,11.3-5.75-11.3-5.74,11.3-5.75-11.3-5.75,11.3-5.75-11.3"></path>
        <path class="cls-9" d="M178.86,399.5l-1.15,2.26c-1-1.88-.42-2.28-1.38-4.16"></path>
        <path class="cls-9" d="M294.17,398.37l-1.72,3.39c-0.38-.75.72,0,0.34-0.77"></path>
        <path class="cls-9" d="M434.86,392.25L430,401.76l-5.73-11.3-5.73,11.3-5.74-11.3-5.74,11.3-5.74-11.3-5.72,11.3-5.73-11.3-5.73,11.3-5.73-11.3-5.74,11.3L367,390.46l-5.73,11.3-5.73-11.3-5.73,11.3-5.73-11.3-5.73,11.3-5.73-11.3-5.73,11.3-5.73-11.3-5.74,11.3-5.74-11.3-5.73,11.3L300.48,395"></path>
        <path class="cls-9" d="M239.32,419.8l-4.23,8.32-5.74-11.3-5.74,11.3-5.74-11.3-5.74,11.3-5.74-11.3-5.74,11.3-5.74-11.3-5.74,11.3-5.74-11.3-5.74,11.3L172,416.82l-5.74,11.3-5.74-11.3-5.74,11.3L149,416.82l-5.74,11.3-5.73-11.3-5.74,11.3-5.74-11.3-5.74,11.3-5.74-11.3-5.74,11.3-5.75-11.3-5.74,11.3-5.74-11.3-5.75,11.3-5.75-11.3-5.74,11.3-5.75-11.3-5.75,11.3-5.75-11.3"></path>
        <path class="cls-9" d="M467.76,421.58l-3.32,6.54-5.73-11.3L453,428.12l-5.74-11.3-5.74,11.3-5.73-11.3L430,428.12l-5.73-11.3-5.73,11.3-5.74-11.3-5.74,11.3-5.74-11.3-5.72,11.3-5.73-11.3-5.73,11.3-5.73-11.3-5.74,11.3L367,416.82l-5.73,11.3-5.73-11.3-5.73,11.3-5.73-11.3-5.73,11.3-5.73-11.3-5.73,11.3-5.73-11.3-5.74,11.3-5.74-11.3-5.73,11.3-5.73-11.3-5.73,11.3-5.73-11.3L281,428.12l-5.74-11.3-5.74,11.3-5.74-11.3L258,428.12l-5.73-11.3-5.74,11.3-3.93-7.73"&.........完整代码请登录后点击上方下载按钮下载查看

网友评论0