A Profile card with circular image alongside name caption and icons
A Pen by Jens Grochtdreis on CodePen.
A Profile card with circular image alongside name caption and icons
A Pen by Jens Grochtdreis on CodePen.
| // By @coderitual | |
| // https://twitter.com/coderitual/status/1112297299307384833 | |
| // Remove any duplicates from an array of primitives. | |
| const unique = [...new Set(arr)] | |
| // Sleep in async functions. Use: await sleep(2000). | |
| const sleep = (ms) => (new Promise(resolve => setTimeout(resolve, ms))); | |
| // Type this in your code to break chrome debugger in that line. |
| <h1>Overview of placeholder-image services | Übersicht von Platzhalterbilder-Diensten</h1> | |
| <!-- Übersicht: https://www.paulund.co.uk/image-placeholder-apis --> | |
| <ul class="imageservicelist"> | |
| <li> | |
| <h2><a href="http://unsplash.it">Unsplash.it</a></h2> | |
| <img class="flexible" src="http://unsplash.it/400/300" alt="Unsplash.it" /> | |
| </li> | |
| <li> | |
| <h2><a href="http://lorempixel.com/">Lorem Pixel</a></h2> | |
| <img class="flexible" src="http://lorempixel.com/400/300/" alt="Lorem Pixel" /> |
| /** | |
| * Animated line headings | |
| */ | |
| h1 { | |
| display: flex; | |
| align-items: center; | |
| width: 100%; | |
| box-sizing: border-box; |
| $(".el").on("click", function(){ | |
| // hier kommt Dein Zeug hin | |
| }); | |
| $(".el").on("mouseenter", function(){ | |
| // hier kommt Dein Zeug hin | |
| }); | |
| $(".el").on("mouseleave", function(){ | |
| // hier kommt Dein Zeug hin |
| .page {width:700px; height:auto; background-color: #fff; margin:auto; margin-top:0px;} | |
| .body { | |
| margin:0; | |
| padding:0; | |
| background-color:#fff; | |
| background-image:url(../img_all/header/header1.jpg); | |
| background-repeat:no-repeat; | |
| } | |
| .body2 { |
A Pen by Jens Grochtdreis on CodePen.
Forked from: http://codepen.io/rhizovuns/pen/yqcmk and converted to Sass
A Pen by Jens Grochtdreis on CodePen.