Animation project for landing page background made in HTML and Stylus. This project is oriented to preserve the performance of browser.
hexagonal game of life animation in a html5 canvas.
A Pen by Olivier BERNARD on CodePen.
This file contains 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
ul.menu | |
li.active | |
a.menu-handle | |
.menu-handle-container | |
.menu-handle-content | |
i.menu-handle-hamburger ☰ | |
strong.menu-handle-icon | |
i.fa.fa-home | |
ul.sub-menu | |
li.menu-item |
This file contains 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
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css'> | |
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/bootstrap-social/5.1.1/bootstrap-social.min.css'> | |
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css'><main class="site-wrapper"> | |
<div class="pt-table desktop-768"> | |
<div class="pt-tablecell page-home relative" style="background-image: url(https://images.unsplash.com/photo-1486870591958-9b9d0d1dda99?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1500&q=80); | |
background-position: center; | |
background-size: cover;"> | |
<div class="overlay"></div> | |
<div class="container"> | |
<div class="row"> |
This file contains 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
<main class="site-wrapper"> | |
<div class="pt-table desktop-768"> | |
<div class="pt-tablecell page-home relative" style="background-image: url(https://www.daimler.com/bilder/innovation/autonomes-fahren/04-lkw-technologie/15c466-028-klein-w1366xh683-cutout.jpg); | |
background-position: center; | |
background-size: cover;"> | |
<div class="overlay"></div> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-xs-12 col-md-offset-1 col-md-10 col-lg-offset-2 col-lg-8"> |
This file contains 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="loader"> | |
<ul class="hexagon-container"> | |
<li class="hexagon hex_1"></li> | |
<li class="hexagon hex_2"></li> | |
<li class="hexagon hex_3"></li> | |
<li class="hexagon hex_4"></li> | |
<li class="hexagon hex_5"></li> | |
<li class="hexagon hex_6"></li> | |
<li class="hexagon hex_7"></li> | |
</ul> |