improved background rendering slightly
This commit is contained in:
parent
ff092d3d84
commit
863a2e9c29
|
@ -18,8 +18,7 @@ function banner(state, emit) {
|
|||
|
||||
function body(template) {
|
||||
return function(state, emit) {
|
||||
const b = html`<body>
|
||||
${activeBackground(state, emit)}
|
||||
const b = html`<body class="background ${activeBackground(state)}">
|
||||
${banner(state, emit)}
|
||||
${header(state)}
|
||||
<main class="main">
|
||||
|
|
|
@ -1,11 +1,14 @@
|
|||
.background {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
z-index: -1;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: fixed;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.background > img {
|
||||
height: 100%;
|
||||
.background_1 {
|
||||
background-image: url('../assets/background_1.jpg');
|
||||
}
|
||||
|
||||
.background_2 {
|
||||
background-image: url('../assets/background_2.jpg');
|
||||
}
|
||||
|
|
|
@ -1,14 +1,12 @@
|
|||
const html = require('choo/html');
|
||||
const assets = require('../../../common/assets');
|
||||
|
||||
module.exports = function(state) {
|
||||
if (!state.backgroundUrl) {
|
||||
const backgrounds = assets.match(/background/);
|
||||
state.backgroundUrl =
|
||||
backgrounds[Math.floor(Math.random() * backgrounds.length)];
|
||||
if (!state.backgroundClass) {
|
||||
const backgrounds = assets.match(/background_/);
|
||||
state.backgroundClass = `background_${Math.floor(
|
||||
Math.random() * backgrounds.length
|
||||
) + 1}`;
|
||||
}
|
||||
|
||||
return html`<div class="background">
|
||||
<img src="${state.backgroundUrl}">
|
||||
</div>`;
|
||||
return state.backgroundClass;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue