webp vs. png for fabric background
This commit is contained in:
13
main.js
13
main.js
@@ -6,13 +6,12 @@ process.env.ELECTRON_DISABLE_SECURITY_WARNINGS = "true";
|
|||||||
|
|
||||||
function createWindow() {
|
function createWindow() {
|
||||||
const win = new BrowserWindow({
|
const win = new BrowserWindow({
|
||||||
show: false, // window is hidden
|
show: false, // window is hidden
|
||||||
width: 1200,
|
width: 1200,
|
||||||
height: 800,
|
height: 800,
|
||||||
webPreferences: {
|
webPreferences: {
|
||||||
nodeIntegration: true,
|
nodeIntegration: true,
|
||||||
contextIsolation: false,
|
contextIsolation: false
|
||||||
icon: path.join(__dirname, '_', 'fabric.png')
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
win.loadFile(path.join(__dirname, 'index.html'));
|
win.loadFile(path.join(__dirname, 'index.html'));
|
||||||
|
|||||||
BIN
ui/_/images/fabric.webp
Normal file
BIN
ui/_/images/fabric.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 216 KiB |
@@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
body {
|
body {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
background-image: url("/_/images/fabric.png");
|
background-image: url("/_/images/fabric.webp");
|
||||||
background-size: 33vw auto; /* width height of each tile */
|
background-size: 33vw auto; /* width height of each tile */
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user