Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                



<head></head>
  

<div class="modal-wrapper">
  <div class="modal-header">
    <p> <strong>Open Live Account</strong></p>
    <span class="is-active"></span>
    <span></span>
    <span></span>
    
  </div>
   <div class="modal-bodies">
     <div class="modal-body modal-body-step-1 is-showing">
       <form action="">
         <label for="">
           <span>Name</span> 
           <input type="text">
         </label>
         <label for="">
           <span>Email</span> 
           <input type="text">
         </label>
         <label for="">
           <span> telephone</span> 
           <input type="text">
         </label>
         
         
            <div class="center">
           <button type="submit"                    class="button not-finished">           Continue</button> 
           
       </div>
           
     
         
         
       </form>
       
       
     </div>
     <div class="modal-body modal-body-step-2">
    
    <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam fugit a molestias temporibus nemo cum neque ipsum, consequatur tempore iste minima maiores facilis esse nulla, magnam ab autem sint rem!</p>
    
      <div class="center">
            <button type="submit" class="button not-finished">Continue</button>
           
</div>
  </div>
     <div class="modal-body modal-body-step-3">
    
    <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam fugit a molestias temporibus nemo cum neque ipsum, consequatur tempore iste minima maiores facilis esse nulla, magnam ab autem sint rem!</p>
    
      <div class="center">
            <button type="submit" class="button finished">Finish</button>
           
</div>
  </div>
     
</div>
  
   
  
  
</div>
  
      
     
      
      
  
     
       
         
           
                 
           
      
              
            
!

CSS

              
                *
  box-sizing: border-box

button
  font-family: 'Open Sans', sans-serif
  outline: none
  box-shadow: none
  border-width: 0px
  border-style: outset
  font-size: 0.8em
  border-color: buttonface 
body
  font-family: 'Open Sans', sans-serif
  color: transparentize(black,0.4)
  
  background: radial-gradient(#ee3443, #ee3455)
  padding: 3em
  min-height: 1000vh
.center
  text-align: center
.button
  display: inline-block
  cursor: pointer
  border-radius: 3px
  
  text-align: center
  padding: 1em 0px 
  width: 250px 
  background: #ee3443 
  outline: none
  color: #fff
 
.modal-wrapper
  width: 350px 
  
  background: #fff
  margin: 0 auto
  transform-origin: top left
  
  

.modal-header
  padding: 1em 0.5em
  background: #fff
  border: 1px solid #eee
  text-align: center
  span
    width: 70px 
    background:  #eee
    border-radius: 0.5em
    margin: 0px 8px
    display: inline-block
    height: 15px
  span.is-active
    background: #ee3443
.modal-bodies
  
  position: relative
  perspective: 1000px
  
.modal-body
  background: #fff
  display: none
  box-shadow: 0px 35px 30px -30px
  transform-origin: top left
  position: absolute
  top: 0
  right: 0
  left: 0
  height: auto

  
  padding: 30px 20px
  p 
    font-size: 0.85em
    padding: 0px 0px 8px 0px 
    color: transparentize(#000000,0.3)
    text-align: center
  label
    span
      font-size: 0.8em
      font-weight: 400
      color: transparentize(#000000,0.3)
      text-transform: uppercase
      display: block
      margin: 0px 0px 8px 0px

  input,select
    display: block
    width: 100%
    border: 1px solid #eee
    padding: 0.8em
    margin-bottom: 2em
    transition: all 300ms ease-in-out
    
    &:focus
      outline: none
      border: 1px solid transparentize(#ee3443,0.4)
.is-showing
  
  display: block
      
.animate-out
  transition: all 300ms ease-in-out
  animation: out 600ms ease-in-out forwards
  
.animate-in
  transition: all 300ms ease-in-out
  animation: in 600ms ease-in-out forwards 
  display: block

.animate-up
  transition: all 300ms ease-in-out
  animation: up 600ms ease-in-out forwards 
  
@keyframes out
  0% 
    transform: translateY(0px) translateX(0px)

  33%
    transform: translateY(200px) 

  
  100%
    transform: rotate(0deg) translateX(-800px)


@keyframes in
  0%
    opacity: 0
    transform: rotateX(-90deg)
 
    
  100%
    opacity: 1
    transform: rotateX(0deg) 
@keyframes up
  0%
    
    transform: translateY(0)

  100%
   
    transform: translateY(-800px)

    
    

  
              
            
!

JS

              
                $("form").submit( function(e){
   e.stopPropagation();
   if(e.preventDefault){
      e.preventDefault();
   }else{
      e.returnValue = false;
   }
});
$('.button.not-finished').click(function(){
   $(this).addClass('finished');
  stepanim();
   
});


function stepanim(){

$('.button.finished').click(function(){
  var $btn = $(this),
      $step = $btn.parents('.modal-body'),
      stepIndex = $step.index(),
      $pag = $('.modal-header span').eq(stepIndex);
      //alert( stepIndex);
      
  if(stepIndex === 0 || stepIndex === 1 || stepIndex === 2|| stepIndex === 2 ) { step1($step, $pag); }
  else { step3($step, $pag); }
  
});
}
function step1($step, $pag){
 console.log('step1');
  // animate the step out
  $step.addClass('animate-out');
  $step.prev().find('.button').removeClass('finished');
  // animate the step in
  setTimeout(function(){
    $step.removeClass('animate-out is-showing')
         .next().addClass('animate-in');
    $pag.removeClass('is-active')
          .next().addClass('is-active');
  }, 600);
  
  // after the animation, adjust the classes
  setTimeout(function(){
    $step.next().removeClass('animate-in')
          .addClass('is-showing');
    
  }, 1200);
}


function step3($step, $pag){
//alert('step 3');

  // animate the step out
  $step.parents('.modal-wrapper').addClass('animate-up');

  setTimeout(function()
   {
 $('.modal-wrapper').removeClass('animate-up')
                  .find('.modal-body')
                  .first().addClass('is-showing').siblings().removeClass('is-showing').parents('.modal-wrapper').addClass('animate-in');

  $('.modal-header span').first().addClass('is-active')
                          .siblings().removeClass('is-active');
 //$(this).hide();
},1200);
  setTimeout(function()
             
   {
    
     $('.modal-wrapper').removeClass('animate-in');
    
  },1800);
  
}

              
            
!
999px

Console