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.
<canvas id='canvas'></canvas>
<!--
Click to clear the canvas
-->
body {
margin:0px;
overflow: hidden;
background: rgb(255,255,255);
background: -moz-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(171,209,234,1) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(171,209,234,1)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%,rgba(171,209,234,1) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%,rgba(171,209,234,1) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%,rgba(171,209,234,1) 100%);
background: radial-gradient(ellipse at center, rgba(255,255,255,1) 0%,rgba(171,209,234,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#abd1ea',GradientType=1 );
}
// Draw Worm
// Ported from flash demo - http://wonderfl.net/c/9os2
//
function DrawWorm(){
var canvas;
var context;
var width;
var height;
var mouse = {x: window.innerWidth/2, y: window.innerHeight};
this.mouse = mouse;
var interval;
var vms = [];
var MAX_NUM = 100;
var N = 80;
var px = window.innerWidth/2;
var py = window.innerHeight;
this.initialize = function(){
canvas = document.getElementById("canvas");
context = canvas.getContext('2d');
width = window.innerWidth;
height = window.innerHeight;
canvas.width = width;
canvas.height = height;
canvas.addEventListener('touchmove', TouchMove, false);
canvas.addEventListener('mousemove', MouseMove, false);
canvas.addEventListener('click', MouseDown, false);
//Set interval - Bad! - I know!
var interval = setInterval(Draw, 20);
}
var Draw = function(){
var len = vms.length;
var i;
//fadeScreen();
for (i = 0; i < len; i++){
var o = vms[i];
if (o.count < N){
DrawWorm(o);
o.count++;
//This looks a tad hacky - modifying the loop from within :S
} else {
len--;
vms.splice(i, 1);
i--;
}
}
Check();
}
//Takes a worm (obj) param
var DrawWorm = function (obj){
if (Math.random() > 0.9){
obj.tmt.rotate(-obj.r * 2);
obj.r *= -1;
}
//Prepend is just concat -- right?
obj.vmt.prependMatrix(obj.tmt);
var cc1x = -obj.w * obj.vmt.c + obj.vmt.tx;
var cc1y = -obj.w * obj.vmt.d + obj.vmt.ty;
var pp1x = (obj.c1x + cc1x) / 2;
var pp1y = (obj.c1y + cc1y) / 2;
var cc2x = obj.w * obj.vmt.c + obj.vmt.tx;
var cc2y = obj.w * obj.vmt.d + obj.vmt.ty;
var pp2x = (obj.c2x + cc2x) / 2;
var pp2y = (obj.c2y + cc2y) / 2;
context.fillStyle = '#000000';
context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(obj.p1x , obj.p1y);
context.quadraticCurveTo(obj.c1x, obj.c1y, pp1x, pp1y);
context.lineTo(pp2x, pp2y);
context.quadraticCurveTo(obj.c2x, obj.c2y, obj.p2x, obj.p2y);
//context.stroke();
context.closePath();
context.fill();
obj.c1x = cc1x;
obj.c1y = cc1y;
obj.p1x = pp1x;
obj.p1y = pp1y;
obj.c2x = cc2x;
obj.c2y = cc2y;
obj.p2x = pp2x;
obj.p2y = pp2y;
}
var Check = function(){
var x0 = mouse.x;
var y0 = mouse.y;
var vx = x0 - px;
var vy = y0 - py;
var len = Math.min(Magnitude(vx, vy), 50);
if (len < 10){
return;
}
var matrix = new Matrix2D();
matrix.rotate((Math.atan2(vy, vx)));
matrix.translate(x0, y0);
createWorm(matrix, len);
context.beginPath();
context.strokeStyle = '#000000';
context.moveTo(px, py);
context.lineTo(x0, y0);
context.stroke();
context.closePath();
px = x0;
py = y0;
//More logic here for afterwards?
}
var createWorm = function(mtx, len){
var angle = Math.random() * (Math.PI/6 - Math.PI/64) + Math.PI/64;
if(Math.random() > 0.5){
angle *= -1;
}
var tmt = new Matrix2D();
tmt.scale(0.95, 0.95);
tmt.rotate(angle);
tmt.translate(len, 0);
var w = 0.5;
var obj = new Worm();
obj.c1x = (-w * mtx.c + mtx.tx);
obj.p1x = (-w * mtx.c + mtx.tx);
obj.c1y = (-w * mtx.d + mtx.ty);
obj.p1y = (-w * mtx.d + mtx.ty);
obj.c2x = (w * mtx.c + mtx.tx);
obj.p2x = (w * mtx.c + mtx.tx);
obj.c2y = (w * mtx.d + mtx.ty);
obj.p2y = (w * mtx.d + mtx.ty);
obj.vmt = mtx;
obj.tmt = tmt;
obj.r = angle;
obj.w = len/20;
obj.count = 0;
vms.push(obj);
if (vms.length > MAX_NUM){
vms.shift();
}
}
//Not sure why they do this kinda thing in flash.
var Worm = function(){
this.c1x = null;
this.c1y = null;
this.c2x = null;
this.c2y = null;
this.p1x = null;
this.p1y = null;
this.p2x = null;
this.p2y = null;
this.w = null;
this.r = null;
this.count = null;
this.vmt = null;
this.tmt = null;
}
var fadeScreen = function(){
context.fillStyle = 'rgba(255, 255, 255, 0.02)';
context.beginPath();
context.rect(0, 0, width, height);
context.closePath();
context.fill();
}
//Clear the screen,
var MouseDown = function(e) {
e.preventDefault();
canvas.width = canvas.width;
vms = [];
}
var MouseMove = function(e) {
mouse.x = e.layerX - canvas.offsetLeft;
mouse.y = e.layerY - canvas.offsetTop;
}
var TouchMove = function(e) {
e.preventDefault();
mouse.x = e.targetTouches[0].pageX - canvas.offsetLeft;
mouse.y = e.targetTouches[0].pageY - canvas.offsetTop;
}
//Returns Magnitude
var Magnitude = function(x, y){
return Math.sqrt((x * x) + (y * y));
}
}
//Hacked up matrix, borrowed from easel.js -- thanks grant!
//
// -- If you are forking this, then you will want to play with the code above this line.
// -- Unless you are totally nuts!
//
(function(window) {
var Matrix2D = function(a, b, c, d, tx, ty) {
this.initialize(a, b, c, d, tx, ty);
}
var p = Matrix2D.prototype;
// static public properties:
Matrix2D.identity = null; // set at bottom of class definition.
Matrix2D.DEG_TO_RAD = Math.PI/180;
p.a = 1;
p.b = 0;
p.c = 0;
p.d = 1;
p.tx = 0;
p.ty = 0;
p.alpha = 1;
p.shadow = null;
p.compositeOperation = null;
p.initialize = function(a, b, c, d, tx, ty) {
if (a != null) { this.a = a; }
this.b = b || 0;
this.c = c || 0;
if (d != null) { this.d = d; }
this.tx = tx || 0;
this.ty = ty || 0;
}
p.prepend = function(a, b, c, d, tx, ty) {
var n11 = a * this.a + b * this.c;
var n12 = a * this.b + b * this.d;
var n21 = c * this.a + d * this.c;
var n22 = c * this.b + d * this.d;
var n31 = tx * this.a + ty * this.c + this.tx;
var n32 = tx * this.b + ty * this.d + this.ty;
this.a = n11;
this.b = n12;
this.c = n21;
this.d = n22;
this.tx = n31;
this.ty = n32;
}
p.append = function(a, b, c, d, tx, ty) {
var a1 = this.a;
var b1 = this.b;
var c1 = this.c;
var d1 = this.d;
this.a = a*a1+b*c1;
this.b = a*b1+b*d1;
this.c = c*a1+d*c1;
this.d = c*b1+d*d1;
this.tx = tx*a1+ty*c1+this.tx;
this.ty = tx*b1+ty*d1+this.ty;
}
p.prependMatrix = function(matrix) {
this.prepend(matrix.a, matrix.b, matrix.c, matrix.d, matrix.tx, matrix.ty);
this.prependProperties(matrix.alpha, matrix.shadow, matrix.compositeOperation);
}
p.appendMatrix = function(matrix) {
this.append(matrix.a, matrix.b, matrix.c, matrix.d, matrix.tx, matrix.ty);
this.appendProperties(matrix.alpha, matrix.shadow, matrix.compositeOperation);
}
p.prependTransform = function(x, y, scaleX, scaleY, rotation, skewX, skewY, regX, regY) {
if (rotation%360) {
var r = rotation*Matrix2D.DEG_TO_RAD;
var cos = Math.cos(r);
var sin = Math.sin(r);
} else {
cos = 1;
sin = 0;
}
if (regX || regY) {
// append the registration offset:
this.tx -= regX; this.ty -= regY;
}
if (skewX || skewY) {
// TODO: can this be combined into a single prepend operation?
skewX *= Matrix2D.DEG_TO_RAD;
skewY *= Matrix2D.DEG_TO_RAD;
this.prepend(cos*scaleX, sin*scaleX, -sin*scaleY, cos*scaleY, 0, 0);
this.prepend(Math.cos(skewY), Math.sin(skewY), -Math.sin(skewX), Math.cos(skewX), x, y);
} else {
this.prepend(cos*scaleX, sin*scaleX, -sin*scaleY, cos*scaleY, x, y);
}
}
p.appendTransform = function(x, y, scaleX, scaleY, rotation, skewX, skewY, regX, regY) {
if (rotation%360 == 0 && scaleX == 1 && scaleY == 1 && skewX == 0 && skewY == 0) {
this.tx += x-regX;
this.ty += y-regY;
return;
}
if (rotation%360) {
var r = rotation*Matrix2D.DEG_TO_RAD;
var cos = Math.cos(r);
var sin = Math.sin(r);
} else {
cos = 1;
sin = 0;
}
if (skewX || skewY) {
// TODO: can this be combined into a single append?
skewX *= Matrix2D.DEG_TO_RAD;
skewY *= Matrix2D.DEG_TO_RAD;
this.append(Math.cos(skewY), Math.sin(skewY), -Math.sin(skewX), Math.cos(skewX), x, y);
this.append(cos*scaleX, sin*scaleX, -sin*scaleY, cos*scaleY, 0, 0);
} else {
this.append(cos*scaleX, sin*scaleX, -sin*scaleY, cos*scaleY, x, y);
}
if (regX || regY) {
// prepend the registration offset:
this.tx -= regX*this.a+regY*this.c;
this.ty -= regX*this.b+regY*this.d;
}
}
p.rotate = function(angle) {
var sin = Math.sin(angle);
var cos = Math.cos(angle);
var n11 = cos * this.a + sin * this.c;
var n12 = cos * this.b + sin * this.d;
var n21 = -sin * this.a + cos * this.c;
var n22 = -sin * this.b + cos * this.d;
this.a = n11;
this.b = n12;
this.c = n21;
this.d = n22;
}
p.skew = function(skewX, skewY) {
skewX = skewX*Matrix2D.DEG_TO_RAD;
skewY = skewY*Matrix2D.DEG_TO_RAD;
this.append(Math.cos(skewY), Math.sin(skewY), -Math.sin(skewX), Math.cos(skewX), 0, 0);
}
p.scale = function(x, y) {
this.a *= x;
this.d *= y;
this.tx *= x;
this.ty *= y;
}
p.translate = function(x, y) {
this.tx += x;
this.ty += y;
}
p.identity = function() {
this.alpha = this.a = this.d = 1;
this.b = this.c = this.tx = this.ty = 0;
this.shadow = this.compositeOperation = null;
}
p.invert = function() {
var a1 = this.a;
var b1 = this.b;
var c1 = this.c;
var d1 = this.d;
var tx1 = this.tx;
var n = a1*d1-b1*c1;
this.a = d1/n;
this.b = -b1/n;
this.c = -c1/n;
this.d = a1/n;
this.tx = (c1*this.ty-d1*tx1)/n;
this.ty = -(a1*this.ty-b1*tx1)/n;
}
p.isIdentity = function() {
return this.tx == 0 && this.ty == 0 && this.a == 1 && this.b == 0 && this.c == 0 && this.d == 1;
}
p.decompose = function(target) {
// TODO: it would be nice to be able to solve for whether the matrix can be decomposed into only scale/rotation
// even when scale is negative
if (target == null) { target = {}; }
target.x = this.tx;
target.y = this.ty;
target.scaleX = Math.sqrt(this.a * this.a + this.b * this.b);
target.scaleY = Math.sqrt(this.c * this.c + this.d * this.d);
var skewX = Math.atan2(-this.c, this.d);
var skewY = Math.atan2(this.b, this.a);
if (skewX == skewY) {
target.rotation = skewY/Matrix2D.DEG_TO_RAD;
if (this.a < 0 && this.d >= 0) {
target.rotation += (target.rotation <= 0) ? 180 : -180;
}
target.skewX = target.skewY = 0;
} else {
target.skewX = skewX/Matrix2D.DEG_TO_RAD;
target.skewY = skewY/Matrix2D.DEG_TO_RAD;
}
return target;
}
p.reinitialize = function(a,b,c,d,tx,ty,alpha,shadow,compositeOperation) {
this.initialize(a,b,c,d,tx,ty);
this.alpha = alpha || 1;
this.shadow = shadow;
this.compositeOperation = compositeOperation;
return this;
}
p.appendProperties = function(alpha, shadow, compositeOperation) {
this.alpha *= alpha;
this.shadow = shadow || this.shadow;
this.compositeOperation = compositeOperation || this.compositeOperation;
}
p.prependProperties = function(alpha, shadow, compositeOperation) {
this.alpha *= alpha;
this.shadow = this.shadow || shadow;
this.compositeOperation = this.compositeOperation || compositeOperation;
}
p.clone = function() {
var mtx = new Matrix2D(this.a, this.b, this.c, this.d, this.tx, this.ty);
mtx.shadow = this.shadow;
mtx.alpha = this.alpha;
mtx.compositeOperation = this.compositeOperation;
return mtx;
}
p.toString = function() {
return "[Matrix2D (a="+this.a+" b="+this.b+" c="+this.c+" d="+this.d+" tx="+this.tx+" ty="+this.ty+")]";
}
// this has to be populated after the class is defined:
Matrix2D.identity = new Matrix2D(1, 0, 0, 1, 0, 0);
window.Matrix2D = Matrix2D;
}(window));
var app, interval, count;
function demoApp() {
count++;
if (count % 2 == 0){
app.mouse.y -= 40
} else {
app.mouse.y += 40;
}
if (count > 30) {
window.clearInterval( interval );
}
}
setTimeout( function() {
app = new DrawWorm();
app.initialize();
count = 0;
interval = setInterval( demoApp, 20 );
}, 10);
Also see: Tab Triggers