docs: mourn

This commit is contained in:
chenjiahan 2020-04-04 23:38:08 +08:00
parent e78c8daeab
commit 0f914db92b
3 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,4 @@
import './mourn';
import Vue from 'vue';
import VueRouter from 'vue-router';
import App from './App';

12
docs/src/mourn.js Normal file
View File

@ -0,0 +1,12 @@
const now = new Date();
if (now.getFullYear() === 2020 && now.getMonth() === 3 && now.getDate() === 4) {
const filter = `
html{
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
}
`;
document.head.insertAdjacentHTML('beforeend', `<style>${filter}</style>`);
}

View File

@ -1,3 +1,4 @@
import './mourn';
import Vue from 'vue';
import Preview from './Preview.vue';