Hi, my name is yusukebe.
- List1
- List2
| img { | |
| filter: grayscale(50%) opacity(10%); | |
| } | |
| @keyframes filter-animation { | |
| 0% { | |
| filter: opacity(0); | |
| } | |
| 50% { | |
| filter: opacity(100%); |
This is a quick example to show @AlbertGlezRoges how to get skewed backgrounds with plain HTML & CSS.
A Pen by Jose L Pimienta on CodePen.
more at: https://github.com/Nosenation/Light-SCSS-Semantic.gs
A Pen by Yannick Albert on CodePen.
| /** | |
| * animated gradient display | |
| */ | |
| body { | |
| padding: 75px 0; | |
| font-family: Helvetica; | |
| font-size: 15px; | |
| } | |
| h1 { | |
| margin: 0 0 8px; |
| /** | |
| * animated gradient display | |
| */ | |
| body { | |
| padding: 75px 0; | |
| font-family: Helvetica; | |
| font-size: 15px; | |
| } | |
| h1 { | |
| margin: 0 0 8px; |
| <!-- content to be placed inside <body>…</body> --> | |
| <p>Hover over the panels to see the effects :) | |
| <div class="panels"> | |
| <a class="panel p0" href="#"> | |
| <div class="panel-info"> | |
| <h1>Rainbow.</h1> | |
| Bouncing <code>transition</code> on | |
| <code>background-size</code> and | |
| <code>background-position</code>. | |
| </div> |
| /** | |
| * animated gradient display | |
| */ | |
| body { | |
| padding: 75px 0; | |
| font-family: Helvetica; | |
| font-size: 15px; | |
| } | |
| h1 { | |
| margin: 0 0 8px; |
| /** | |
| * div with irregular shapes with css3 and html5 | |
| */ | |
| div { box-sizing: border-box; } | |
| .container { | |
| overflow: hidden; | |
| width: 32em; | |
| height: 32em; | |
| margin: 5.6em auto 0; | |
| background: silver; |