HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
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.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
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.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
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.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<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>
/* 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; }
/*
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]);
}
Also see: Tab Triggers