登录
首页 >  文章 >  前端

带有 Web 组件的卡通网络徽标

时间:2025-01-17 23:15:56 230浏览 收藏

在文章实战开发的过程中,我们经常会遇到一些这样那样的问题,然后要卡好半天,等问题解决了才发现原来一些细节知识点还是没有掌握好。今天golang学习网就整理分享《带有 Web 组件的卡通网络徽标》,聊聊,希望可以帮助到正在努力赚钱的你。

我用 HTML 元素重现了经典卡通频道的标志性风格。该元素接收两个颜色属性,并使用这些颜色交替显示文本中的字母。

带有 Web 组件的卡通网络徽标

以下代码片段展示了自定义 HTML 元素 CartoonNetworkify 的实现:

class CartoonNetworkify extends HTMLElement {
    static observedAttributes = ['color1', 'color2'];

    constructor() {
        super();
    }

    connectedCallback() {
        const words = this.innerText.split(' ');
        this.attachShadow({ mode: 'open' });
        const root = this.shadowRoot;
        const table = document.createElement('table');

        const maxLength = words.reduce((max, w) => w.length > max ? w.length : max, Number.MIN_VALUE);

        const color1 = this.getAttribute('color1') || 'black';
        const color2 = this.getAttribute('color2') || 'white';

        words.reduce((tbody, line, i) => {
            line = line.padEnd(maxLength);
            line.split('').reduce((trow, letter, j) => {
                const td = trow.insertCell();
                td.innerText = letter.toUpperCase();
                const odd = i % 2 === j % 2;
                td.dataset.odd = odd;
                td.style.backgroundColor = odd ? color1 : color2;
                td.style.color = odd ? color2 : color1;
                return trow;
            }, tbody.insertRow());
            return tbody;
        }, table.createTBody());

        root.appendChild(table);

        const template = document.getElementById('cartoon-networkify-template');
        root.appendChild(template.content.cloneNode(true));
    }

    attributeChangedCallback(name, oldValue, newValue) {
        if (this.shadowRoot) {
            this.shadowRoot.querySelectorAll('td').forEach(td => {
                const odd = td.dataset.odd === 'true';
                if (name === 'color1') {
                    td.style[odd ? 'backgroundColor' : 'color'] = newValue;
                } else if (name === 'color2') {
                    td.style[odd ? 'color' : 'backgroundColor'] = newValue;
                }
            });
        }
    }
}

此代码创建了一个表格,并将文本的每个字母放入一个单独的单元格中。单元格的背景色和文本颜色根据其位置交替变化,以实现卡通频道标志的视觉效果。 observedAttributes 确保属性更改时会更新显示。 请注意,这需要一个名为 cartoon-networkify-template<template> 元素用于添加额外的样式(代码中未显示,但示例中可能包含)。 更多关于自定义元素的信息,请参考MDN文档。

今天关于《带有 Web 组件的卡通网络徽标》的内容介绍就到此结束,如果有什么疑问或者建议,可以在golang学习网公众号下多多回复交流;文中若有不正之处,也希望回复留言以告知!

相关阅读
更多>
最新阅读
更多>
课程推荐
更多>