Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
<h1>Efek Mengetik Teks dengan CSS</h1>
<h2><a href="http://www.jurnalweb.com/cara-membuat-animasi-mengetik-teks-dengan-css">Jurnalweb.com</a></h2>
<hr>
<div class="animasi-teks">Hallo, selamat datang.....</div>
</body>
</html>
 
h1{
  font-size: 20px;
}
h2{
  font-size: 17px;
}
.animasi-teks {
  font-size: 29px;
  width: 100%;
  white-space:nowrap;
  overflow:hidden;
  -webkit-animation: typing 5s steps(70, end);
  animation: animasi-ketik 5s steps(70, end);
}
@keyframes animasi-ketik{
  from { width: 0; }
}
@-webkit-keyframes animasi-ketik{
  from { width: 0; }
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers