CSS/文字フュージョン

アニメーション

CSS
#left {
  font-size: 20px;
  color: rgba(132,211,54,0.9);
  font-weight: bold;
  position: relative;
  top: 50px;
  left: 30px;
  z-index:1;
  -webkit-animation: left 20s infinite ease;
}
@-webkit-keyframes left {
  0% {
    left: 30px;
  }
  10% {
  	left: 100px;
  }
  100% {
  	left: 100px;
  }
}

#right {
  font-size: 20px;
  color: rgba(12,11,154,0.6);
  font-weight: bold;
  position: relative;
  top: 1px;
  left: 200px;
  z-index:0;
  -webkit-animation: right 20s infinite ease;
}
@-webkit-keyframes right {
 0% {
    left: 200px;
  }
  10% {
  	left: 101px;
  }
  100% {
  	left: 101px;
  }
}