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.
<!--
Hi, this demo was based on www.hellothierry.com slider.
Original concept by Jean-Christophe Suzanne.
Coded by Gláuber Sampaio (@glauber_sampaio).
Have fun!
-->
<link href='https://fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'>
<div id="content">
<div id="slider">
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/73159/image1.jpg" alt="This is just" data-url="#1">
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/73159/image2.jpg" alt="a demo of" data-url="#2">
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/73159/image3.jpg" alt="a full slider" data-url="#3">
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/73159/image4.jpg" alt="and it's really beautiful" data-url="#4">
</div>
<p class="c"> Fork on <a href="https://github.com/glauber-sampaio/codepen/tree/master/fullSliderPrototype">Github</a> | Images by <a href="http://unsplash.com">Unsplash</a> | Original concept by <a href="http://www.jcsuzanne.com/">Jean-Christophe Suzanne</a> for <a href="http://hellothierry.com">Hello Thierry</a></p>
</div>
/*
Font style.
Easier way to style fonts in one single line.
*/
@mixin font($size, $color, $spacing, $style, $weight) {
font-size: $size+px;
font-style: $style;
font-weight: $weight;
letter-spacing: $spacing+px;
color: $color;
}
/*
Utilities
*/
%fullWidth { width: 100%; }
%fullHeight { height: 100%; }
%viewportHeight { height: 100vh; }
%fullSize { width: 100%; height: 100%; }
%widthAuto { width: auto; display: table; }
%heightAuto { height: auto; }
%marginAuto { margin: 0 auto; }
%quint {
-webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
-moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
-o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
-webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
-moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
-o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
}
%expo {
-webkit-transition: all 500ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
-moz-transition: all 500ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
-ms-transition: all 500ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
-o-transition: all 500ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
transition: all 500ms cubic-bezier(0.190, 1.000, 0.220, 1.000); /* easeOutExpo */
-webkit-transition-timing-function: cubic-bezier(0.190, 1.000, 0.220, 1.000);
-moz-transition-timing-function: cubic-bezier(0.190, 1.000, 0.220, 1.000);
-ms-transition-timing-function: cubic-bezier(0.190, 1.000, 0.220, 1.000);
-o-transition-timing-function: cubic-bezier(0.190, 1.000, 0.220, 1.000);
transition-timing-function: cubic-bezier(0.190, 1.000, 0.220, 1.000); /* easeOutExpo */
}
/* Styles */
html {
-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6, p, ul, li { margin: 0; padding: 0; }
a { text-decoration: none; @extend %expo; }
a.full { width: 100%; height: 100%; display: block; }
ul, li { list-style: none; }
body {
background: darken(white, 80%);
font-family: 'Lato', sans-serif;
font-weight: 400;
}
#content {
@extend %fullSize;
height: 100vh;
position: relative;
overflow: hidden;
.c {
@include font(10, white, 0, normal, normal);
position: absolute;
bottom: 15px; right: 15px;
z-index: 99999;
text-align: center;
a { color: white; text-decoration: underline; }
}
#slider {
@extend %fullWidth;
@extend %fullHeight;
position: relative;
img { display: none; }
/* Main images navigation */
.mainImages {
@extend %fullSize;
position: relative;
z-index: 1;
.mi__img {
@extend %fullSize;
position: absolute;
top: 0; left: 0;
/* -webkit-transform: scale(0.7);
transform: scale(0.7); */
}
}
/* Background Images (Blur effect) */
.backgroundImages {
@extend %fullSize;
position: absolute;
top: 0; left: 0;
z-index: 0;
.bi__imgCont {
@extend %fullSize;
position: absolute;
bottom: 0; left: 0;
overflow: hidden;
.bi__imgCont-img {
@extend %fullSize;
position: relative;
}
}
}
/* Navigation styles */
.navigation {
@extend %fullWidth;
position: absolute;
bottom: 0; left: 0;
color: white;
z-index: 2;
ul {
@extend %widthAuto;
margin: 90px auto;
li {
@extend %widthAuto;
float: left;
margin-right: 30px;
overflow: hidden;
cursor: pointer;
position: relative;
&:last-child { margin-right: 0; }
&:hover {
.li__info { opacity: 0.9 !important; }
}
&.active {
.li__hoverLine {
.l { width: 100%; }
}
}
a {
@extend %fullSize;
position: absolute;
top: 0; left: 0;
z-index: 1;
@extend %expo;
}
.li__info,
.li__info-mask .mask__infoContainer {
@extend %fullWidth;
overflow: hidden;
opacity: 0.7;
@extend %expo;
h5 {
@include font(12, white, 0, normal, 300);
float: left;
transform: rotate(-90deg);
-webkit-transform: rotate(-90deg);
padding: 4px 0px 5px 0px;
}
h4 {
@include font(18, white, 0, normal, 400);
float: left;
padding-left: 6px;
text-transform: uppercase;
}
}
.li__info-mask {
width: 0%;
position: absolute;
top: 0; left: 0;
opacity: 1;
overflow: hidden;
.mask__infoContainer { opacity: 1; }
}
.li__hoverLine {
@extend %fullWidth;
height: 1px;
float: left;
margin-top: 8px;
.l {
width: 0%;
height: 1px;
background: darken(white, 20%);
margin: 0 auto;
transition-duration: 1s;
-webkit-transition-duration: 1s;
}
}
}
}
}
}
}
(function () {
'use strict';
/*---------------*/
if (!window.requestAnimationFrame) {
window.requestAnimationFrame = (function() {
return window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||
window.msRequestAnimationFrame ||
function(callback, element) {
window.setTimeout(callback, 1000 / 60);
};
})();
}
// from http://stackoverflow.com/a/6466243/2011404
function pad (str, max) {
str = str.toString();
return str.length < max ? pad("0" + str, max) : str;
}
function css(element, property) {
var _property = window.getComputedStyle(element, null).getPropertyValue(property);
if(_property.indexOf('px') != -1) { return parseInt(_property); }
else { return _property; }
}
function Slice (elements) {
return Array.prototype.slice.call(elements);
}
TweenLite.defaultEase = Expo.easeOut;
/*---------------*/
function TSlider () {
console.log('fine!');
this._init();
}
TSlider.prototype = {
_init: function() {
this.isFF = !!navigator.userAgent.match(/firefox/i);
// Check if it's mobile or click
this.evttype = 'click';
// Slider global element
this.Slider = document.getElementById('slider');
// Images total count
this.imagesCount = new Slice(this.Slider.querySelectorAll('img')).length;
// Slideshow interval
this.sldInterval = 6000;
// Control if it's animating
this.isAnimating = false;
// Current slide
this.current = 0;
// Minimum scale
this.minScale = 0.7;
/* Let's do the magic! */
this._createSlider();
},
/* --------------- */
_createSlider: function () {
var self = this;
this.originalImgsEl = new Slice(this.Slider.querySelectorAll('img'));
this.images = [];
/* Creating 'mainImages' element to receive the copy of all images */
var _mainImagesEl = document.createElement('div');
classie.addClass(_mainImagesEl, 'mainImages');
this.Slider.appendChild(_mainImagesEl);
/* Creating 'backgroundImages' element to receive the copy of all images */
var _backgroundImagesEl = document.createElement('div');
classie.addClass(_backgroundImagesEl, 'backgroundImages');
this.Slider.appendChild(_backgroundImagesEl);
/* Creating 'navigation' element */
var _navigationEl = document.createElement('div');
classie.addClass(_navigationEl, 'navigation');
this.Slider.appendChild(_navigationEl);
/* Final main elements */
this.mainImages = this.Slider.querySelector('.mainImages');
this.backgroundImages = this.Slider.querySelector('.backgroundImages');
this.navigation = this.Slider.querySelector('.navigation');
this.navigation.innerHTML = '<ul></ul>';
/* Copying the images attributes */
this.originalImgsEl.forEach(function (el, i) {
var src = el.attributes.src.nodeValue;
var alt = el.attributes.alt.nodeValue;
var dataUrl = el.dataset.url;
self.images.push({
src: src, alt: alt, url: dataUrl, index: i
});
self.Slider.removeChild(el);
});
/* Creating the 'mainImages' elements */
for( var i=0; i < this.images.length; i++ ) {
var obj = this.images[i];
this._createNewImgs(obj);
this._createNavigation(obj);
}
this.sld = new Slice(this.Slider.querySelectorAll('.mi__img'));
this.bgSld = new Slice(this.Slider.querySelectorAll('.bi__imgCont'));
this.navItens = new Slice(this.navigation.querySelectorAll('li'));
/* Positioning all slides */
this._firstPosition();
},
_createNewImgs: function (obj) {
var _miImgEl = document.createElement('div');
var _biContImgEl = document.createElement('div');
classie.addClass(_miImgEl, 'mi__img');
classie.addClass(_biContImgEl, 'bi__imgCont');
_miImgEl.style.background = 'url('+ obj.src +') no-repeat center center';
_miImgEl.style.backgroundSize = 'cover';
_miImgEl.style.zIndex = (this.imagesCount - (obj.index + 1));
_biContImgEl.innerHTML = '<div class="bi__imgCont-img bi-'+ obj.index +'" />';
this.mainImages.appendChild(_miImgEl);
this.backgroundImages.appendChild(_biContImgEl);
var bgImageSrc = obj.src.split('.jpg')[0];
var bi = this.backgroundImages.querySelector('.bi__imgCont .bi-' + obj.index);
bi.style.background = 'url('+ bgImageSrc +'-blur.jpg) no-repeat center top';
bi.style.backgroundSize = 'cover';
this.backgroundImages.style.display = "none";
//classie(this.Slider.querySelectorAll('.mi__img')[this.current], 'active-slide');
},
_createNavigation: function (obj) {
var ul = this.navigation.querySelector('ul');
var _li = document.createElement('li');
var a, liInfo, mask;
// Putting zero before number
var number = pad((obj.index+1), 2);
// For each item...
classie.addClass(_li, 'navItem-' + obj.index);
_li.innerHTML = '<a href=""></a><div class="li__info"></div><div class="li__info-mask"><div class="mask__infoContainer"></div></div><div class="li__hoverLine"><div class="l"></div></div>';
ul.appendChild(_li);
// New elements
a = ul.querySelector('.navItem-' + obj.index + ' a');
liInfo = ul.querySelector('.navItem-' + obj.index + ' .li__info');
mask = ul.querySelector('.navItem-' + obj.index + ' .mask__infoContainer');
// Setting links href attr
a.setAttribute('href', obj.url);
// Inner texts
var info = '<h5>'+number+'</h5><h4>'+obj.alt+'</h4>';
liInfo.innerHTML = info;
mask.innerHTML = info;
// Setting width for mask according to 'li' size.
// This the the final computed style of li
mask.style.width = css(_li, 'width') + "px";
if(this.isFF) {
mask.style.width = (css(_li, 'width')+5) + "px";
}
},
_firstPosition: function () {
var self = this;
TweenMax.set(this.navigation, { opacity: 0, y: 25 });
// Front images
this.sld.forEach(function (el, i) {
classie.addClass(el, 'sld-' + i);
if( i===0 ) {
// The first image will have the 'fade-in' animation
TweenMax.set(el, { scale: 1.3, opacity: 0 });
}
else {
// Other images will have the default position
TweenMax.set(el, { scale: self.minScale, y: -window.innerHeight });
}
});
// Blur images (background)
this.bgSld.forEach(function (el, i) {
classie.addClass(el, 'bg-' + i);
TweenMax.set(el.querySelector('.bi__imgCont-img'), { scale: 1.35, y: 80 });
el.style.zIndex = 0;
if( i === self.current ) {
TweenMax.set(el.querySelector('.bi__imgCont-img'), { scale: 1.5, y: 0 });
el.style.zIndex = (self.current + 2);
}
if( i === (self.current + 1)) {
el.style.zIndex = (self.current + 1);
}
});
/*classie.addClass(self.sld[self.current], 'active-slide');
classie.addClass(self.navItens[self.current], 'active');*/
// Must wait everything in their right place before start
setTimeout(function () { self._enterAnimation(); } , 1200);
},
_enterAnimation: function () {
var self = this;
var t = new TimelineMax({
paused: true,
onComplete: function () {
self._startSlider();
self.backgroundImages.style.display = "block";
}
});
t.to(self.sld[self.current], 2.5, { scale: 1, opacity: 1 });
t.to(self.navigation, 1.2, { opacity: 1, y: 0 }, 0.8);
t.restart();
},
/* --------------- */
/*
Lógica:
1) Primeiro slide aparece.
2) Apareceu? Começou contagem.
3) Acabou contagem, transiciona.
4) Acabou transição? Aparece novo slide.
*/
_startSlider: function() {
var self = this;
var currSlide = this.sld[this.current];
var currNavItem = this.navItens[this.current];
var currBgSlide = this.bgSld[this.current];
var currBgSldImage = currBgSlide.querySelector('.bi__imgCont-img');
console.log('Começa contagem do slide ' + this.current + '.');
animateCurrNavItem(currNavItem);
classie.addClass(currSlide, 'active-slide');
/*++++*/
function animateCurrNavItem (el) {
classie.addClass(el, 'active');
el.querySelector('.li__info').style.opacity = 0.3;
el.querySelector('.li__info-mask').style.opacity = 1;
TweenMax.to(el.querySelector('.li__info-mask'), self.sldInterval/1000, {
width: '100%', ease: Linear.easeNone,
onComplete: function () {
console.log('Agora, aciona as transições.');
slidesTransitions();
}
});
}
function slidesTransitions () {
var nextIndex = self.current < self.imagesCount - 1 ? ++self.current : 0;
classie.removeClass(currSlide, 'active-slide');
classie.removeClass(currNavItem, 'active');
TweenMax.set(currBgSlide, { top: 0, bottom: 'inherit' });
// Reset navigation item
currNavItem.querySelector('.li__info').style.opacity = 0.7;
TweenMax.to(currNavItem.querySelector('.li__info-mask'), 0.5, {
opacity: 0,
onComplete: function () {
currNavItem.querySelector('.li__info-mask').style.width = "0%";
}
});
// Move images
var tm = new TimelineMax({
onComplete: function () {
console.log('Transição de slides terminado.');
TweenMax.killTweensOf(currSlide, currBgSlide);
// Moving up the last image
TweenMax.set(currSlide, { scale: self.minScale, y: -window.innerHeight });
// Reseting last background image
TweenMax.set(currBgSlide, { height: '100%', top: 'inherit', bottom: 0 });
TweenMax.set(currBgSldImage, { scale: 1.35, y: 80 });
currBgSlide.style.zIndex = 0;
// New z-index value for next background images
self.bgSld[nextIndex].style.zIndex = 2;
if((nextIndex+1) >= self.imagesCount) { self.bgSld[0].style.zIndex = 1; }
else { self.bgSld[nextIndex+1].style.zIndex = 1; }
//console.log(self.bgSld[nextIndex+1], ' : ', nextIndex+1);
// Reinitialize the slider
self.current = nextIndex;
self._startSlider();
}
});
// Current elements animations
tm.to(currSlide, 1.5, { scale: 0.8 });
tm.to(currBgSldImage, 1.2, { scale: 1.35 }, 0.15);
tm.to(currSlide, 1.2, { y: window.innerHeight }, 0.8);
tm.to(currBgSlide, 1.2, { height: '0%' }, 0.8);
// Next elements animations
tm.to(self.sld[nextIndex], 1.2, { y: 0 }, 0.8);
tm.to(self.sld[nextIndex], 1.5, { scale: 1 }, 1.8);
tm.to(self.bgSld[nextIndex].querySelector('.bi__imgCont-img'), 1.5, { y: 0 }, 1);
tm.to(self.bgSld[nextIndex].querySelector('.bi__imgCont-img'), 1.5, { scale: 1.5 }, 1.8);
}
}
};
/*---------------*/
var s = new TSlider();
})();
Also see: Tab Triggers