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.
<body class="render">
<div class="project">
<img src="https://images.unsplash.com/photo-1532115599357-443f70b59086?ixlib=rb-0.3.5&s=3dfc9d3c20202917834151051ccb537b&dpr=1&auto=format&fit=crop&w=1000&q=80&cs=tinysrgb" class="project-image">
<div class="canvas-wrapper"></div>
</div>
<div class="project">
<img src="https://images.unsplash.com/photo-1532128687411-528a85f8af03?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=411175c808e8e030a03b302de27dd809&dpr=1&auto=format&fit=crop&w=1000&q=80&cs=tinysrgb" class="project-image">
<div class="canvas-wrapper"></div>
</div>
<div class="project">
<img src="https://images.unsplash.com/photo-1532115599357-443f70b59086?ixlib=rb-0.3.5&s=3dfc9d3c20202917834151051ccb537b&dpr=1&auto=format&fit=crop&w=1000&q=80&cs=tinysrgb" class="project-image">
<div class="canvas-wrapper"></div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/pixi.js/4.8.1/pixi.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.1/TweenMax.min.js"></script>
</body>
.project-image { display: none; }
.canvas-wrapper { position: relative; width: 500px; height: 500px; }
canvas { display: block; position: absolute; left: 0; top: 0;
}
(function() {
window.CanvasSlideshow = function( options ) {
var that = this;
// OPTIONS
options = options || {};
options.addCanvasTo = options.hasOwnProperty('addCanvasTo') ? options.addCanvasTo : 'body';
options.canvasStyleClass = options.hasOwnProperty('canvasStyleClass') ? options.canvasStyleClass : '';
options.stageWidth = options.hasOwnProperty('stageWidth') ? options.stageWidth : 1920;
options.stageHeight = options.hasOwnProperty('stageHeight') ? options.stageHeight : 1080;
options.pixiSprites = options.hasOwnProperty('sprites') ? options.sprites : [];
options.centerSprites = options.hasOwnProperty('centerSprites') ? options.centerSprites : false;
options.texts = options.hasOwnProperty('texts') ? options.texts : [];
options.autoPlay = options.hasOwnProperty('autoPlay') ? options.autoPlay : true;
options.autoPlaySpeed = options.hasOwnProperty('autoPlaySpeed') ? options.autoPlaySpeed : [10, 3];
options.fullScreen = options.hasOwnProperty('fullScreen') ? options.fullScreen : true;
options.displaceScale = options.hasOwnProperty('displaceScale') ? options.displaceScale : [200, 70];
options.displacementImage = options.hasOwnProperty('displacementImage') ? options.displacementImage : '';
options.navElement = options.hasOwnProperty('navElement') ? options.navElement : document.querySelectorAll( '.scene-nav' );
options.displaceAutoFit = options.hasOwnProperty('displaceAutoFit') ? options.displaceAutoFit : false;
options.wacky = options.hasOwnProperty('wacky') ? options.wacky : false;
options.interactive = options.hasOwnProperty('interactive') ? options.interactive : false;
options.interactionEvent = options.hasOwnProperty('interactionEvent') ? options.interactionEvent : '';
options.displaceScaleTo = ( options.autoPlay === false ) ? [ 0, 0 ] : [ 20, 20 ];
options.textColor = options.hasOwnProperty('textColor') ? options.textColor : '#fff';
options.displacementCenter = options.hasOwnProperty('displacementCenter') ? options.displacementCenter : false;
options.dispatchPointerOver = options.hasOwnProperty('dispatchPointerOver') ? options.dispatchPointerOver : false;
// PIXI VARIABLES
var renderer = new PIXI.autoDetectRenderer( options.stageWidth, options.stageHeight, { transparent: true });
var stage = new PIXI.Container();
var slidesContainer = new PIXI.Container();
var displacementSprite = new PIXI.Sprite.fromImage( options.displacementImage );
var displacementFilter = new PIXI.filters.DisplacementFilter( displacementSprite );
// TEXTS
var style = new PIXI.TextStyle({
fill: options.textColor,
wordWrap: true,
wordWrapWidth: 400,
letterSpacing: 20,
fontSize: 14
});
// SLIDES ARRAY INDEX
this.currentIndex = 0;
// INITIALISE PIXI
this.initPixi = function() {
// Add canvas to the HTML
console.log(options.addCanvasTo)
document.querySelector(options.addCanvasTo).appendChild( renderer.view );
// Add child container to the main container
const boxWidth = document.querySelector(options.addCanvasTo).offsetWidth;
const boxHeight = document.querySelector(options.addCanvasTo).offsetHeight;
stage.addChild( slidesContainer );
console.log(renderer.width, renderer.height)
// Enable Interactions
stage.interactive = true;
renderer.view.setAttribute('width', boxWidth)
renderer.view.setAttribute('height', boxHeight)
renderer.view.style.height = boxWidth;
renderer.view.style.height = boxHeight;
renderer.view.className = options.canvasStyleClass;
displacementSprite.texture.baseTexture.wrapMode = PIXI.WRAP_MODES.REPEAT;
// Set the filter to stage and set some default values for the animation
stage.filters = [displacementFilter];
if ( options.autoPlay === false ) {
displacementFilter.scale.x = 0;
displacementFilter.scale.y = 0;
}
if ( options.wacky === true ) {
displacementSprite.anchor.set(0.5);
displacementSprite.x = renderer.width / 2;
displacementSprite.y = renderer.height / 2;
}
displacementSprite.scale.x = 2;
displacementSprite.scale.y = 2;
// PIXI tries to fit the filter bounding box to the renderer so we optionally bypass
displacementFilter.autoFit = options.displaceAutoFit;
stage.addChild( displacementSprite );
};
// LOAD SLIDES TO CANVAS
this.loadPixiSprites = function( sprites ) {
var rSprites = options.sprites;
var rTexts = options.texts;
for ( var i = 0; i < rSprites.length; i++ ) {
var texture = new PIXI.Texture.fromImage( sprites[i] );
var image = new PIXI.Sprite( texture );
if ( rTexts ) {
var richText = new PIXI.Text( rTexts[i], style);
image.addChild(richText);
richText.anchor.set(0.5);
richText.x = image.width / 2;
richText.y = image.height / 2;
}
if ( options.centerSprites === true ) {
image.anchor.set(0.5);
image.x = renderer.width / 2;
image.y = renderer.height / 2;
}
// image.transform.scale.x = 1.3;
// image.transform.scale.y = 1.3;
if ( i !== 0 ) {
TweenMax.set( image, { alpha: 0 } );
}
slidesContainer.addChild( image );
}
};
// DEFAULT RENDER/ANIMATION
if ( options.autoPlay === true ) {
var ticker = new PIXI.ticker.Ticker();
ticker.autoStart = options.autoPlay;
ticker.add(function( delta ) {
displacementSprite.x += options.autoPlaySpeed[0] * delta;
displacementSprite.y += options.autoPlaySpeed[1];
renderer.render( stage );
});
} else {
var render = new PIXI.ticker.Ticker();
render.autoStart = true;
render.add(function( delta ) {
renderer.render( stage );
});
}
// TRANSITION BETWEEN SLIDES
var isPlaying = false;
var slideImages = slidesContainer.children;
this.moveSlider = function( newIndex ) {
isPlaying = true;
var baseTimeline = new TimelineMax( { onComplete: function () {
that.currentIndex = newIndex;
isPlaying = false;
if ( options.wacky === true ) {
displacementSprite.scale.set( 1 );
}
},onUpdate: function() {
if ( options.wacky === true ) {
displacementSprite.rotation += baseTimeline.progress() * 0.02;
displacementSprite.scale.set( baseTimeline.progress() * 3 );
}
} });
baseTimeline.clear();
if ( baseTimeline.isActive() ) {
return;
}
baseTimeline
.to(displacementFilter.scale, 1, { x: options.displaceScale[0], y: options.displaceScale[1] })
.to(slideImages[that.currentIndex], 0.5, { alpha: 0 })
.to(slideImages[newIndex], 0.5, { alpha: 1 })
.to(displacementFilter.scale, 1, { x: options.displaceScaleTo[0], y: options.displaceScaleTo[1] } );
};
// CLICK HANDLERS
var nav = options.navElement;
for ( var i = 0; i < nav.length; i++ ) {
var navItem = nav[i];
navItem.onclick = function( event ) {
// Make sure the previous transition has ended
if ( isPlaying ) {
return false;
}
if ( this.getAttribute('data-nav') === 'next' ) {
if ( that.currentIndex >= 0 && that.currentIndex < slideImages.length - 1 ) {
that.moveSlider( that.currentIndex + 1 );
} else {
that.moveSlider( 0 );
}
} else {
if ( that.currentIndex > 0 && that.currentIndex < slideImages.length ) {
that.moveSlider( that.currentIndex - 1 );
} else {
that.moveSlider( spriteImages.length - 1 );
}
}
return false;
}
}
// INIT FUNCTIONS
this.init = function() {
that.initPixi();
that.loadPixiSprites( options.pixiSprites );
/*
if ( options.fullScreen === true ) {
window.addEventListener("resize", function( event ){
scaleToWindow( renderer.view );
});
scaleToWindow( renderer.view );
}
*/
};
// INTERACTIONS
function rotateSpite() {
displacementSprite.rotation += 0.001;
rafID = requestAnimationFrame( rotateSpite );
}
if ( options.interactive === true ) {
var rafID, mouseX, mouseY;
// Enable interactions on our slider
slidesContainer.interactive = true;
slidesContainer.buttonMode = true;
// HOVER
if ( options.interactionEvent === 'hover' || options.interactionEvent === 'both' ) {
slidesContainer.pointerover = function( mouseData ){
var ticker = new PIXI.ticker.Ticker();
ticker.autoStart = options.autoPlay;
ticker.add(function( delta ) {
displacementSprite.x += options.autoPlaySpeed[0] * delta;
displacementSprite.y += options.autoPlaySpeed[1];
renderer.render( stage );
});
};
slidesContainer.pointerout = function( mouseData ){
TweenMax.to( displacementFilter.scale, 1, { x: 0, y: 0 });
cancelAnimationFrame( rafID );
};
}
// CLICK
if ( options.interactionEvent === 'click' || options.interactionEvent === 'both' ) {
slidesContainer.pointerup = function( mouseData ){
if ( options.dispatchPointerOver === true ) {
TweenMax.to( displacementFilter.scale, 1, { x: 0, y: 0, onComplete: function() {
TweenMax.to( displacementFilter.scale, 1, { x: 20, y: 20 });
} });
} else {
TweenMax.to( displacementFilter.scale, 1, { x: 0, y: 0 });
cancelAnimationFrame( rafID );
}
};
slidesContainer.pointerdown = function( mouseData ){
mouseX = mouseData.data.global.x;
mouseY = mouseData.data.global.y;
TweenMax.to( displacementFilter.scale, 1, { x: "+=" + Math.sin( mouseX ) * 1200 + "", y: "+=" + Math.cos( mouseY ) * 200 + "" });
};
slidesContainer.pointerout = function( mouseData ){
if ( options.dispatchPointerOver === true ) {
TweenMax.to( displacementFilter.scale, 1, { x: 0, y: 0, onComplete: function() {
TweenMax.to( displacementFilter.scale, 1, { x: 20, y: 20 });
} });
} else {
TweenMax.to( displacementFilter.scale, 1, { x: 0, y: 0 });
cancelAnimationFrame( rafID );
}
};
}
}
// CENTER DISPLACEMENT
if ( options.displacementCenter === true ) {
displacementSprite.anchor.set(0.5);
displacementSprite.x = renderer.view.width / 2;
displacementSprite.y = renderer.view.height / 2;
}
// START
this.init();
// HELPER FUNCTIONS
function scaleToWindow( canvas, backgroundColor ) {
var scaleX, scaleY, scale, center;
//1. Scale the canvas to the correct size
//Figure out the scale amount on each axis
scaleX = window.innerWidth / canvas.offsetWidth;
scaleY = window.innerHeight / canvas.offsetHeight;
//Scale the canvas based on whichever value is less: `scaleX` or `scaleY`
scale = Math.min(scaleX, scaleY);
canvas.style.transformOrigin = "0 0";
canvas.style.transform = "scale(" + scale + ")";
//2. Center the canvas.
//Decide whether to center the canvas vertically or horizontally.
//Wide canvases should be centered vertically, and
//square or tall canvases should be centered horizontally
if (canvas.offsetWidth > canvas.offsetHeight) {
if (canvas.offsetWidth * scale < window.innerWidth) {
center = "horizontally";
} else {
center = "vertically";
}
} else {
if (canvas.offsetHeight * scale < window.innerHeight) {
center = "vertically";
} else {
center = "horizontally";
}
}
//Center horizontally (for square or tall canvases)
var margin;
if (center === "horizontally") {
margin = (window.innerWidth - canvas.offsetWidth * scale) / 2;
canvas.style.marginTop = 0 + "px";
canvas.style.marginBottom = 0 + "px";
canvas.style.marginLeft = margin + "px";
canvas.style.marginRight = margin + "px";
}
//Center vertically (for wide canvases)
if (center === "vertically") {
margin = (window.innerHeight - canvas.offsetHeight * scale) / 2;
canvas.style.marginTop = margin + "px";
canvas.style.marginBottom = margin + "px";
canvas.style.marginLeft = 0 + "px";
canvas.style.marginRight = 0 + "px";
}
//3. Remove any padding from the canvas and body and set the canvas
//display style to "block"
canvas.style.paddingLeft = 0 + "px";
canvas.style.paddingRight = 0 + "px";
canvas.style.paddingTop = 0 + "px";
canvas.style.paddingBottom = 0 + "px";
canvas.style.display = "block";
//4. Set the color of the HTML body background
document.body.style.backgroundColor = backgroundColor;
//Fix some quirkiness in scaling for Safari
var ua = navigator.userAgent.toLowerCase();
if (ua.indexOf("safari") != -1) {
if (ua.indexOf("chrome") > -1) {
// Chrome
} else {
// Safari
//canvas.style.maxHeight = "100%";
//canvas.style.minHeight = "100%";
}
}
//5. Return the `scale` value. This is important, because you'll nee this value
//for correct hit testing between the pointer and sprites
return scale;
} // http://bit.ly/2y1Yk2k
};
})();
var spriteImages = document.querySelectorAll( '.project-image' );
var spriteImagesSrc = [];
for ( var i = 0; i < spriteImages.length; i++ ) {
var img = spriteImages[i];
spriteImagesSrc.push( img.getAttribute('src' ) );
}
console.log(spriteImagesSrc);
var initCanvasSlideshow = new CanvasSlideshow({
addCanvasTo: '.canvas-wrapper',
canvasStyleClass: 'canvas',
stageWidth: 500,
stageHeight: 500,
sprites: spriteImagesSrc,
displacementImage: 'http://i.imgur.com/2yYayZk.png',
centerSprites: true,
interactive: true,
interactionEvent: 'hover',
autoPlay: false,
autoPlaySpeed: [10, 3],
displaceScale: [200, 70],
});
Also see: Tab Triggers