A Pen by Eyal Cohen on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<head> | |
<style> | |
@import 'https://fonts.googleapis.com/css?family=Libre+Baskerville:400,400i'; | |
@import url("https://fonts.googleapis.com/css?family=Poppins:500,800&display=swap"); | |
</style> | |
</head> | |
<!-- body --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="content"> | |
<p>Curabitur <del>blandit tempus porttitor</del>. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Etiam porta sem malesuada magna mollis euismod.</p> | |
<p>Etiam porta sem malesuada magna mollis euismod. Integer posuere erat a ante venenatis <del>dapibus posuere velit aliquet</del>. Sed posuere consectetur est at lobortis. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Etiam porta sem malesuada magna mollis euismod. Curabitur blandit tempus porttitor.</p> | |
<p>Morbi leo risus, <del>porta ac consectetur ac, vestibulum at eros. Nullam id dolor id nibh ultricies vehicula ut id elit</del>. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Cras mattis consectetur purus sit amet fermentum. Aenean eu leo quam. Pellentesque ornare sem <del>lacinia quam</del> venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Sed posuere consectetur est |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="intro-text" id="intro-text"> | |
<h2>INTRO TEXT AWESOMENESS</h2> | |
<h2>Made Possible With</h2> | |
<h2>CSS ANIMATION</h2> | |
<h2>& A TINY BIT OF</h2> | |
<h2>JAVASCRIPT</h2> | |
<h2>TO INITIATE THE</h2> | |
<h2>jQuery LETTERING.js PLUGIN</h2> | |
<h2>REFRESH TO SEE IT AGAIN...</h2> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="target"> | |
CodeMyUI.com, web design inspiration and code snippets.<br/> <br/><br/>Nunc at lorem egestas, gravida lorem quis, pulvinar ante. Quisque id tempus libero. Mauris hendrerit nunc risus, ac laoreet lectus gravida et. Nam euismod magna ac enim posuere sagittis. Fusce at egestas enim, eu hendrerit enim. | |
</div> | |
<button onclick="takeScreenShot()">to image</button> |
A Pen by Daniel Fontes on CodePen.
Here's a version that indicates there is deleted text, but keeps it out of view unless it's needed... It has been deleted after all ;)
#codepenchallenge for and
A Pen by Mark Praschan on CodePen.
I couldn't find a good solution that contained all the things I needed:
- Accessible
- Drag & Drop
- Touch-friendly
- Sorting (not just drag from box A to box B)
- Full IE9 support
So I'm toying with this semantic approach. Credit to http://johnny.github.io/jquery-sortable/ for the great sortable plugin.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="app" class="container"> | |
<div class="text-center" style="padding: 20px;"> | |
<h3>Drag 'n Drop with VueJS and SortableJS</h3> | |
<span>Drag available option to the right.</span> | |
</div> | |
<div class="row" style="margin:5px; border-radius: 2px; padding: 5px; background-color: #F4F4F4;"> | |
<li class="selected card" v-for="option in selected" v-colorswatch> | |
{{ option }} | |
</li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="skeleton"> | |
<div class="content"> | |
<div class="title-header pens-title-header"> | |
<h1>Picked Pens</h1> | |
</div> | |
<div class="row" id="picked"> | |
<div class="card"> |