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="container">
<section class="clear">
			<header class="list-header">
				<div class="circles">
					<div></div>
					<div></div>
					<div></div>
				</div>
					
				<h1>Things To Do</h1>

				<div class="menu">
					<div></div>
					<div></div>
					<div></div>
				</div>
			</header>
				
			<ul class="task-list">
				<li class="task">
					Click and drag this item right to mark it as complete
				</li>
				<li class="task">
					Drag left to delete an item
				</li>
				<li class="task">
					Don't edit anything in the HTML or CSS
				</li>
				<li class="task">
					Try to use only JavaScript, no third-party libraries
				</li>
			</ul>
		</section>
  
  <br>
  
  <p><a href="https://gallery.mailchimp.com/282459d63a019df7bb8ca2e92/images/800d93e4-bfd6-4749-8dd0-f2c4fb784c17.gif">See Demo</a> | <a href="http://bitsofco.de/clear-js/">Read the Blog Post</a> | <a href="https://codepen.io/ire/pen/NNPaEQ">My Solution</a> (no peaking!)</p>

	</div>
              
            
!

CSS

              
                /* RESETTING */

html { box-sizing: border-box; font-size: 62.5%;  }
*, *:before, *:after { box-sizing: inherit; }
body { font-size: 1.6rem; font-weight: 300; line-height: 1.6; font-family: 'Open Sans', sans-serif; }
h1 { font-size: 2rem; }
a { color: inherit; }


/* LAYOUT */

.container { width: 90%; max-width: 500px; margin: 100px auto; }

/* CLEAR ELEMENT */
.clear { margin: 30px 0; }

.list-header { display: flex; align-items: center; background-color: #e0dee0; border-top-left-radius: 5px; border-top-right-radius: 5px; padding: 10px 20px; }

.list-header div { width: 20%; }

.list-header .circles div { height: 15px; width: 15px; border-radius: 50%; display: inline-block; margin-right: 5px; }

.list-header .circles div:nth-child(1) { background-color: #fc615d; }

.list-header .circles div:nth-child(2) { background-color: #fec342; }

.list-header .circles div:nth-child(3) { background-color: #34c749; }

.list-header .menu { display: flex; align-items: flex-end; flex-direction: column; }

.list-header .menu div { width: 25px; height: 3px; background-color: #a9a9a9; border-radius: 3px; }

.list-header .menu div:nth-child(2) { margin: 4px 0; }

.list-header h1 { width: 60%; text-align: center; }

/* Task List */
.task-list { background-color: #272822; min-height: 400px; overflow: hidden; }

/* Individual Task */
.task { color: #fff; width: 100%; height: auto; min-height: 50px; line-height: 2; position: relative; padding: 8px 20px; height: auto; transition: background-color 1s; }

.task:before, .task:after { position: absolute; top: 0; width: 40px; height: 50px; line-height: 50px; text-align: center; }

.task:before { content: "\2714"; left: -40px; }

.task:after { content: "\2718"; right: -40px; }

.task:not(.completed):not(.completing) { border-bottom: 2px solid #d44a29; }

.task:nth-child(1) { background-color: #e3252c; }

.task:nth-child(2) { background-color: #dc342a; }

.task:nth-child(3) { background-color: #e7522e; }

.task:nth-child(4) { background-color: #e86d2f; }

.task:nth-child(5) { background-color: #e86d2f; }

.task.completing { text-decoration: line-through; background-color: green; }

.task.completed { opacity: 0.5; text-decoration: line-through; background-color: #323232; }

.task.completed:before { content: ""; }

.task.deleting { background-color: #323232; }

              
            
!

JS

              
                /*

  THINGS TO NOTE
		- Each task list item has a class of .task
		- When the task is being swiped right, try adding the class of .completing
		- When the task is being swiped left, try adding the class of .deleting
		- A completed task should have a class of .completed
    
    - The check and crosses are added as :before and :after pseudo-elements of the .task li so you don't need to add them
    
      GOOD LUCK!

*/
let tasks = document.getElementsByClassName('task');

const swipe = (elem) => {
  let tolerance = 80
  let taskList = document.getElementsByClassName('task-list')[0]
  let movement
  
  const animateCompleted = () => {
    let offset = 900,
        step = 10
    
    elem.style.marginLeft = offset + 'px'
    
    let animationTime = setInterval(() => {
      if (offset > 0) {
        elem.style.marginLeft = (offset -= 20) + 'px'
      } else {
        clearInterval(animationTime)
      }
    }, step)
  }
  
  const completeTask = () => {
    elem.classList.remove('completing')
    elem.classList.add('completed')
    
    taskList.removeChild(elem)
    taskList.appendChild(elem)
    
    animateCompleted()
  }
  
  const deleteTask = () => {
    elem.classList.remove('deleting')
    taskList.removeChild(elem)
  }
  
  const resetSwipe = () => {
    movement = 0
    elem.style.marginLeft = movement + 'px'
    elem.isMouseDown = false
  }
  
  const resetClasses = () => {
    elem.classList.remove('deleting')
    elem.classList.remove('completing')
  }
  
  const handleMouseMove = (e) => {
    if (elem.isMouseDown) {
      movement += event.movementX;
      elem.style.marginLeft = movement + 'px';
      
      if (movement > tolerance) {
        elem.classList.add('completing')
      } else if (movement < -tolerance) {
        elem.classList.add('deleting')
      } else {
        resetClasses()
      }
    }
  }
  
  const handleMouseOut = (e) => {
    resetSwipe()
    resetClasses()
    elem.removeEventListener('mousemove', handleMouseMove)
  }
  
  const handleMouseUp = (e) => {
    elem.isMouseDown = false
    elem.removeEventListener('mouseout', handleMouseOut)
    
    resetSwipe()
    
    if (elem.classList.contains('completing')) {
      completeTask()
    } else if (elem.classList.contains('deleting')) {
      deleteTask()
    }
  }
  
  const handleMouseDown = (e) => {
    resetSwipe()
    elem.isMouseDown = true;
    elem.addEventListener('mousemove', handleMouseMove, false)
    elem.addEventListener('mouseout', handleMouseOut, false)
  }
  
  elem.addEventListener('mousedown', handleMouseDown, false)
  elem.addEventListener('mouseup', handleMouseUp, false)
}

for (let i = 0; i < tasks.length; i++) {
  tasks[i].id = "task_" + i;
  swipe(tasks[i]);
}
              
            
!
999px

Console