Skip to content

Instantly share code, notes, and snippets.

@florida
florida / README.md
Last active December 26, 2019 07:52
Fish Rainbow
<div class="image-container" data-large="https://assets.imgix.net/unsplash/bear.jpg?w=1000">
<img class="placeholder" src="https://assets.imgix.net/unsplash/bear.jpg?w=50" class="img-small">
</div>
.image-container {
position: relative;
overflow: hidden;
}
.placeholder {
position: relative;
width: 100%;
filter: blur(10px);
transform: scale(1);
window.onload = function() {
var largePicture = document.querySelector('.image-container')
// Load large image
var imgLarge = new Image();
imgLarge.src = largePicture.dataset.large;
imgLarge.onload = function () {
imgLarge.classList.add('loaded');
};
imgLarge.classList.add('picture');
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"name": "Comment",
"scope": [
"comment",
"punctuation.definition.comment"
],
"settings": {
"fontStyle": "italic",