mirror of
https://github.com/brunofontes/shareit.git
synced 2024-11-23 20:10:52 +00:00
feat: favicon with number of used items
This commit is contained in:
parent
58fe265821
commit
3d5e484364
BIN
public/favicon.png
Normal file
BIN
public/favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.2 KiB |
BIN
public/favicon2.png
Normal file
BIN
public/favicon2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
25
resources/js/app.js
vendored
25
resources/js/app.js
vendored
@ -20,3 +20,28 @@ import './bootstrap';
|
|||||||
// const app = new Vue({
|
// const app = new Vue({
|
||||||
// el: '#app'
|
// el: '#app'
|
||||||
// });
|
// });
|
||||||
|
|
||||||
|
|
||||||
|
function setFaviconNumber(number) {
|
||||||
|
var canvas = document.createElement('canvas'),
|
||||||
|
ctx,
|
||||||
|
img = document.createElement('img'),
|
||||||
|
link = document.getElementById('favicon').cloneNode(true);
|
||||||
|
|
||||||
|
if (canvas.getContext) {
|
||||||
|
canvas.height = canvas.width = 48; // set the size
|
||||||
|
ctx = canvas.getContext('2d');
|
||||||
|
img.onload = function () { // once the image has loaded
|
||||||
|
ctx.drawImage(this, 0, 0);
|
||||||
|
ctx.font = 'bold 35px "helvetica", sans-serif';
|
||||||
|
ctx.fillStyle = '#ffff66';
|
||||||
|
ctx.fillText(number, 3, 25);
|
||||||
|
link.href = canvas.toDataURL('image/png');
|
||||||
|
document.body.appendChild(link);
|
||||||
|
};
|
||||||
|
img.src = 'favicon.png';
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
usedItems = document.getElementById("usedItems").innerText;
|
||||||
|
setFaviconNumber(usedItems);
|
||||||
|
@ -19,9 +19,12 @@
|
|||||||
|
|
||||||
<!-- Styles -->
|
<!-- Styles -->
|
||||||
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
|
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
|
||||||
|
|
||||||
|
<link id="favicon" rel="icon" type="image/png" href="favicon.png" />
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
<div hidden id="usedItems">{{ isset($usedItems) && $usedItems > 0 ? $usedItems : '' }}</div>
|
||||||
<div id="app">
|
<div id="app">
|
||||||
<nav class="navbar navbar-expand-md navbar-light navbar-laravel">
|
<nav class="navbar navbar-expand-md navbar-light navbar-laravel">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
<title>Share It</title>
|
<title>Share It</title>
|
||||||
|
<link id="favicon" rel="icon" type="image/png" href="favicon.png" />
|
||||||
|
|
||||||
<!-- Fonts -->
|
<!-- Fonts -->
|
||||||
<link href="https://fonts.googleapis.com/css?family=Nunito:200,600" rel="stylesheet" type="text/css">
|
<link href="https://fonts.googleapis.com/css?family=Nunito:200,600" rel="stylesheet" type="text/css">
|
||||||
|
Loading…
Reference in New Issue
Block a user