<div class="wrapper">
  <div class="slide">
    <ul>
      <li>Tokyo</li>
      <li>New York</li>
      <li>Paris</li>
      <li>Hà Nội</li>
      <li>TPHCM</li>
    </ul>
  </div>
</div>
*{
  box-sizing: border-box;
}
.wrapper{
  position: absolute;
  width: 100%;
  height: 100%;
  background: #2C3E50; 
  background: -webkit-linear-gradient(to left, #2C3E50 , #4CA1AF); 
  background: linear-gradient(to left, #2C3E50 , #4CA1AF);
}

.slide{
  width: 150px;
  height: 35px;
  border-left: 4px solid white;
  border-right: 4px solid white;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  overflow: hidden;
  ul{
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    position: absolute;
    li{
      width: 100%;
      height: 35px;
      font-size: 1.5em;
      color: $fLime;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }
}
View Compiled
function move(){
  $(".slide ul").animate({
    top: "-=35px"
  },function(){
    $(".slide ul li:first").appendTo('ul');
    $(".slide ul").css("top","");
  });
}
setInterval(function(){move();},1500);

External CSS

  1. https://fonts.googleapis.com/css?family=Open+Sans
  2. https://fonts.googleapis.com/css?family=Raleway
  3. https://fonts.googleapis.com/css?family=Lato
  4. https://raw.githubusercontent.com/ZeroX-DG/style-helper/master/scss/_FlatColors.scss
  5. https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css

External JavaScript

  1. https://code.jquery.com/jquery-3.1.0.js