javascript 如何在网站的书签图标上添加徽章?

vq8itlhq  于 2023-01-16  发布在  Java
关注(0)|答案(1)|浏览(100)

例如在chrome浏览器上,WhatsApp的网络书签图标显示你当前的消息数量,Reddit有一个红点,甚至LinkedIn在你收到通知时也会在左上角显示一个蓝点。如果你能指出正确的方向来实现这一点,我将不胜感激。

sz81bmfz

sz81bmfz1#

可以通过更改favicon的href来动态更改收藏夹的图标。

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Dynamic favicon</title>
        <link rel="icon" id="favicon" href="./icons/icon_without_dot.png" type="image/png" />
    </head>
    <body>
        <h1>Dynamic favicon</h1>
        <button onclick="toggleFavicon()">Change favicon</button>

        <script>
            const favicon = document.getElementById("favicon");

            function toggleFavicon() {
                if (favicon.getAttribute("href") == "./icons/icon_without_dot.png") {
                    favicon.setAttribute("href", "./icons/icon_with_dot.png");
                }else{
                    favicon.setAttribute("href", "./icons/icon_without_dot.png")
                }
            }
        </script>

    </body>
</html>

相关问题