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

              
                
<div class="checkers"></div>

<ul class="board">
  <ul class="column">
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
  </ul>
  <ul class="column">
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
  </ul>
  <ul class="column">
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
  </ul>
  <ul class="column">
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
  </ul>
  <ul class="column">
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
  </ul>
  <ul class="column">
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
  </ul>
  <ul class="column">
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
  </ul>
</ul>

<div class="reset">Reset</div>
              
            
!

CSS

              
                @import "compass"

$background: rgba( 246, 251, 255, 1 )
$foreground: rgba( 245, 224, 98, 1 )
$red: rgba( 255 , 57 , 46 , 1 )
$black: rgba( 70 , 71 , 72 , 1 )

html , body
  background-color: $background
  position: absolute
  overflow: hidden
  height: 100%
  width: 100%
  left: 0
  top: 0
  
.reset
  @include translate( -50% , 0 )
  font-family: sans-serif
  font-weight: 100
  letter-spacing: 0.1em
  position: absolute
  color: $background
  background-color: $red
  cursor: pointer
  left: 50%
  top: 50%
  
  @media screen and ( orientation: landscape )
    margin-top: 35vh
    padding: 2vh
    font-size: 2vh
    
  @media screen and ( orientation: portrait )
    margin-top: 35vw
    padding: 2vw
    font-size: 2vw
  
.checkers
  position: absolute

.board
  white-space: nowrap
  @include translate( -50% , -50% )
  font-size: 0
  position: absolute
  left: 50%
  top: 50%
  
  
  @media screen and ( orientation: landscape )
    box-shadow: 0 0 0 2vh $foreground
    
  @media screen and ( orientation: portrait )
    box-shadow: 0 0 0 2vw $foreground
  
.checker
  position: absolute
  border-radius: 50%
  left: 0
  top: 0
  
  @media screen and ( orientation: landscape )
    box-shadow: 0 -0.25vh 0 0.15vh rgba( 0, 0, 0, 0.25 ) inset
    margin: 0.5vh 0 0 0.5vh
    width: 9vh
    height: 9vh
    
  @media screen and ( orientation: portrait )
    box-shadow: 0 -0.25vw 0 0.15vw rgba( 0, 0, 0, 0.25 ) inset
    margin: 0.5vw 0 0 0.5vw
    width: 9vw
    height: 9vw
  
  &.red
    background-color: $red
    
  &.black
    background-color: $black
  
.column
  overflow: hidden
  display: inline-block
  position: relative
  
  &:after
    content: ""
    position: absolute
    bottom: 0
    right: 0
    left: 0
    top: 0
  
  li
    overflow: hidden
    position: relative
    cursor: pointer
    display: block
    
    &:before
      content: ""
      box-shadow: 0 0 0 4vw $foreground
      border-radius: 50%
      position: absolute
      height: 80%
      width: 80%
      left: 10%
      top: 10%

  @media screen and ( orientation: landscape )
    width: 10vh
    
    li
      width: 10vh
      height: 10vh
    
  @media screen and ( orientation: portrait )
    width: 10vw
    
    li
      width: 10vw
      height: 10vw
    
  
    
              
            
!

JS

              
                class App
  
  checkers: []
  targetColumn: 0
  columnValue: [ 0 , 0 , 0 , 0 , 0 , 0 , 0 ]
  
  currentColor: "red"
  resizing: false
  
  constructor: ->
    
    @.getElements()
    @.addListeners()
    @.render()
    
    @.makeChecker @.currentColor
    
  getElements: ->
    
    @.board = document.querySelector ".board"
    @.columns = @.board.getElementsByClassName "column"
    @.checkerHolder = document.querySelector ".checkers"
    @.resetButton = document.querySelector ".reset"
    
  addListeners: ->
    
    window.addEventListener "resize" , @.onResize
    @.resetButton.addEventListener "click" , @.onReset
    
    i = 0
    for column in @.columns
      column.setAttribute "data-num" , i
      column.addEventListener "mousemove" , @.onColumnOver
      column.addEventListener "click" , @.onColumnClick
      i++
    @.onResize()
    
  onReset: =>
        
    console.log "resetting"
    if @.currentColor is "red" then @.currentColor = "black" else @.currentColor = "red"
    for checker in @.checkers
      checker.parentNode.removeChild checker
    @.checkers = []
    @.columnValue = [ 0 , 0 , 0 , 0 , 0 , 0 , 0 ]
    @.makeChecker @.currentColor
    
  onColumnOver: ( e ) =>
    @.targetColumn = parseInt( e.target.getAttribute( "data-num" ))
    
  onColumnClick: ( e ) =>
    @.targetColumn = parseInt( e.target.getAttribute( "data-num" ))
    @.dropChecker()
    
  dropChecker: =>
    for checker in @.checkers
      if checker.state.active is true and @.columnValue[ @.targetColumn ] < 6
      
        checker.state.x = @.bounds.width / 7 * checker.state.column
        checker.state.row = 5 - @.columnValue[ @.targetColumn ]
        @.columnValue[ @.targetColumn ]++
        checker.state.active = false
        
        if @.currentColor is "red" then @.currentColor = "black" else @.currentColor = "red"
        @.makeChecker @.currentColor
    
  onResize: =>
    
    @.bounds = @.board.getBoundingClientRect()
    s = @.bounds
    style = "
      top: #{s.top}px; 
      left:#{s.left}px; 
      width: #{s.width}px; 
      height: #{s.height}px;
    "
    
    @.resizing = true
    clearTimeout @.resizeDebounce
    @.resizeDebounce = setTimeout =>
      @.resizing = false
    , 60
    
    @.checkerHolder.setAttribute "style" , style
    
  makeChecker: ( color ) ->
    
    checker = document.createElement "div"
    checker.setAttribute "class" , "checker #{color}"
    
    checker.state =
      initialized: false
      active: true
      row: -1.5
      column: 0
      x: 0
      y: 0
      
    @.checkerHolder.appendChild checker
    @.checkers.push checker
      
  render: =>
    
    requestAnimationFrame @.render
    @.updateCheckers()
    
  updateCheckers: ->
    
    for checker in @.checkers
      
      if checker.state.active is true then checker.state.column = @.targetColumn
      
      u = @.bounds.width / 7
      
      targetX = u * checker.state.column
      targetY = u * checker.state.row
      
      if checker.state.initialized is true and @.resizing is false
         
        checker.state.x = @.ease checker.state.x , targetX
        if Math.abs( checker.state.x - targetX ) < u * 0.2
          checker.state.y = @.ease checker.state.y , targetY
        
      else
        
        checker.state.initialized = true
        checker.state.x = targetX
        checker.state.y = targetY
      
      @.transform checker , checker.state.x , checker.state.y
      
  ease: ( current , target ) ->
    
    diff = current - target
    if Math.abs( diff ) > 0.1
      current -= diff * 0.2
    else
      current = target
      
  transform: ( element , x , y ) ->
    
    prefixes = [ "webkitTransform" , "transform" ]
    for prefix in prefixes
      element.style[ prefix ] = "translate( #{x}px , #{y}px)"
    
window.game = new App()
              
            
!
999px

Console