Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <script src="https://unpkg.com/scrollreveal@4"></script>
</head>
<body>
  <!--  utility class (explicit) -->
  <h1 class="headline load-hidden">
    Widget Inc.
  </h1>
  <!-- style extension (implicit) --> 
  <ul class="widget-list">
     <li class="widget">1</li>
     <li class="widget">2</li>
     <li class="widget">3</li>
     <li class="widget">4</li>
     <li class="widget">5</li>
   </ul>
  <script>
    ScrollReveal().reveal('.headline', { duration: 2000 });
    ScrollReveal().reveal('.widget', { interval: 200 });
  </script>
</body>
</html>
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers