SlideShare a Scribd company logo
CSS Parallax - DotCSS 2014
CSS Parallax - DotCSS 2014
CSS parallax scrolling
Enhanced scrolling done right.
Don’t use JavaScript
Repaints are evil.
Scrolling is sensitive
Enhance, don’t replace.
Keith Clark
One smart dude.
Enter the third dimension
Use CSS3 perspective.
<body class="parallax">

<div class="parallax-layer parallax-layer-back">

...

</div>

<div class="parallax-layer parallax-layer-base">

...

</div>

</body>
.parallax {

height: 100vh;

perspective: 1px;

overflow: hidden;

overflow-y: scroll;

}
.parallax-layer {

position: absolute;

top: 0;

right: 0;

bottom: 0;

left: 0;

}
.parallax-layer-base {

transform: translateZ(0);

}



.parallax-layer-back {

transform: translateZ(-1px) scale(2);

}
Any modern browser
IE does not support nesting, duh.
More information
keithclark.co.uk/articles/pure-css-parallax-websites/
Guido Bouman
http://github.com/guidobouman

More Related Content

PDF
Biological Modelling, Powered by AngularJS
KEY
PreDevCampSF - CSS3 Tricks
PPTX
Being a pimp without silverlight
PPTX
Real-time parallax error compensation in head-mounted eye trackers
PPTX
PDF
The Creative New World of CSS
DOC
Creating dynamic SVG elements in JavaScript
PDF
GOTO Berlin - You can use CSS for that
Biological Modelling, Powered by AngularJS
PreDevCampSF - CSS3 Tricks
Being a pimp without silverlight
Real-time parallax error compensation in head-mounted eye trackers
The Creative New World of CSS
Creating dynamic SVG elements in JavaScript
GOTO Berlin - You can use CSS for that

Similar to CSS Parallax - DotCSS 2014 (20)

PDF
The Future of Frontend - what is new in CSS?
PDF
Tailwind Carousel: Create Responsive Carousels Easily - Blogs
PDF
Confoo: You can use CSS for that!
PDF
HTML5 and CSS3 – exploring mobile possibilities - Dynabyte event
PDF
Think Vitamin CSS
PDF
I Can't Believe It's Not Flash
KEY
CSS3 Takes on the World
PDF
Next-level CSS
TXT
Blog skins396734
PDF
Eye Candy Without Images: Fun With CSS3
PDF
CSS3 Transforms Transitions and Animations
PDF
HTML 5 گرافیک دو بعدی در
PDF
Vue in Motion
PDF
HTML5: friend or foe (to Flash)?
PDF
Making the most of New CSS Layout
KEY
Jarv.us Showcase — SenchaCon 2011
PPTX
CSS3 TTA (Transform Transition Animation)
PDF
Css3 transitions and animations + graceful degradation with jQuery
PDF
taking-flight-tailwind-css for beginners.pdf
PDF
Visualization over Web: Tools and Tips-吳泰輝
The Future of Frontend - what is new in CSS?
Tailwind Carousel: Create Responsive Carousels Easily - Blogs
Confoo: You can use CSS for that!
HTML5 and CSS3 – exploring mobile possibilities - Dynabyte event
Think Vitamin CSS
I Can't Believe It's Not Flash
CSS3 Takes on the World
Next-level CSS
Blog skins396734
Eye Candy Without Images: Fun With CSS3
CSS3 Transforms Transitions and Animations
HTML 5 گرافیک دو بعدی در
Vue in Motion
HTML5: friend or foe (to Flash)?
Making the most of New CSS Layout
Jarv.us Showcase — SenchaCon 2011
CSS3 TTA (Transform Transition Animation)
Css3 transitions and animations + graceful degradation with jQuery
taking-flight-tailwind-css for beginners.pdf
Visualization over Web: Tools and Tips-吳泰輝
Ad

Recently uploaded (20)

PPTX
Slides PPTX World Game (s) Eco Economic Epochs.pptx
PPTX
innovation process that make everything different.pptx
PPTX
Introduction about ICD -10 and ICD11 on 5.8.25.pptx
PPTX
E -tech empowerment technologies PowerPoint
PPTX
PptxGenJS_Demo_Chart_20250317130215833.pptx
PPTX
Internet___Basics___Styled_ presentation
PDF
WebRTC in SignalWire - troubleshooting media negotiation
PPTX
international classification of diseases ICD-10 review PPT.pptx
PDF
Paper PDF World Game (s) Great Redesign.pdf
PDF
Decoding a Decade: 10 Years of Applied CTI Discipline
PDF
The Internet -By the Numbers, Sri Lanka Edition
PDF
SASE Traffic Flow - ZTNA Connector-1.pdf
PPTX
June-4-Sermon-Powerpoint.pptx USE THIS FOR YOUR MOTIVATION
PPTX
presentation_pfe-universite-molay-seltan.pptx
PDF
Introduction to the IoT system, how the IoT system works
PPTX
Power Point - Lesson 3_2.pptx grad school presentation
PDF
Best Practices for Testing and Debugging Shopify Third-Party API Integrations...
PDF
How to Ensure Data Integrity During Shopify Migration_ Best Practices for Sec...
PDF
An introduction to the IFRS (ISSB) Stndards.pdf
PPTX
SAP Ariba Sourcing PPT for learning material
Slides PPTX World Game (s) Eco Economic Epochs.pptx
innovation process that make everything different.pptx
Introduction about ICD -10 and ICD11 on 5.8.25.pptx
E -tech empowerment technologies PowerPoint
PptxGenJS_Demo_Chart_20250317130215833.pptx
Internet___Basics___Styled_ presentation
WebRTC in SignalWire - troubleshooting media negotiation
international classification of diseases ICD-10 review PPT.pptx
Paper PDF World Game (s) Great Redesign.pdf
Decoding a Decade: 10 Years of Applied CTI Discipline
The Internet -By the Numbers, Sri Lanka Edition
SASE Traffic Flow - ZTNA Connector-1.pdf
June-4-Sermon-Powerpoint.pptx USE THIS FOR YOUR MOTIVATION
presentation_pfe-universite-molay-seltan.pptx
Introduction to the IoT system, how the IoT system works
Power Point - Lesson 3_2.pptx grad school presentation
Best Practices for Testing and Debugging Shopify Third-Party API Integrations...
How to Ensure Data Integrity During Shopify Migration_ Best Practices for Sec...
An introduction to the IFRS (ISSB) Stndards.pdf
SAP Ariba Sourcing PPT for learning material
Ad

CSS Parallax - DotCSS 2014