江枫 网络工程师edit icon

Fork(复制)
下载
嵌入
设置
BUG反馈
index.html
现在支持上传本地图片了!
            
            <!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <title>Senior Network Architect | 江枫 网络工程师</title>
    <style>
        
        body {
            margin: 0;
            background: #000;
            overflow: hidden;
            font-family: 'Courier New', monospace;
        }

        #matrix {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 0;
        }

        
        .content {
            position: relative;
            z-index: 1;
            color: #0f0;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        
        @keyframes title-glow {
            0%, 100% { text-shadow: 0 0 10px #0f0; }
            50% { text-shadow: 0 0 20px #0f0, 0 0 30px #0f0; }
        }

        .header {
            text-align: center;
            padding: 4rem 0;
            border-bottom: 2px solid #0f0;
            margin-bottom: 3rem;
            animation: title-glow 2s infinite;
        }

        
        .skill-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .skill-card {
            background: rgba(0, 30, 0, 0.8);
            padding: 2rem;
            border: 1px solid #0f0;
            border-radius: 5px;
            transition: transform 0.3s;
            backdrop-filter: blur(5px);
        }

        .skill-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 20px #0f03;
        }

        
        .topology {
            position: relative;
            height: 400px;
            margin: 4rem 0;
        }

        .node {
            position: absolute;
            width: 50px;
            height: 50px;
            background: #0f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
    </style>
</head>
<body>
    <canvas id="matrix"></canvas>
    
    <div class="content">
        <header class="header">
            <h1>江枫 初级网安工程师</h1>
            <h3>Zero Trust Security • SDN Automation • Cloud Networking</h3>
        </header>

        <div class="skill-grid">
            <div class="skill-card">
                <h2>⨀⃝ 核心能力</h2>
                <ul>
                    <li>100Gbps+ 骨干网设计</li>
                    <li>Cisco/Juniper 全栈解决方案</li>
                    <li>IPv6 过渡架构</li>
                    <li>MPLS/VXLAN 虚拟化</li>
                </ul>
            </div>

            <div class="skill-card">
                <h2>⨀⃝ 安全认证</h2>
                <ul>
                    <li>CCIE Security #61428</li>
                    <li>CISSP</li>
                    <li>AWS Advanced Networking</li>
                    <li>Palo Alto PCNSE</li>
                </ul>
            </div>
        </div>

        <div class="topology">
            <div class="node" style="top: 50%; left: 50%">CORE</div>
            <div class="node" style="top: 20%; left: 30%">EDGE</div>
            <div class="node" style="top: 20%; left: 70%">CLOUD</div>
        </div>
    </div>

    <script>
        
        const canvas = document.getElementById('matrix');
        const ctx = canvas.getContext('2d');

        canvas.width = window.innerWidth;
        canvas.height = window.innerHeight;

        const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789@#$%^&*';
        const drops = [];
        const fontSize = 14;
        const columns = canvas.width/fontSize;

        for(let x = 0; x < columns; x++) {
            drops[x] = 1;
        }

        function draw() {
            ctx.fillStyle = 'rgba(0, 0, 0, 0.05)';
            ctx.fillRect(0, 0, canvas.width, canvas.height);
            
            ctx.fillStyle = '#0F0';
            ctx.font = fontSize + 'px monospace';

            for(let i = 0; i < drops.length; i++) {
                const text = chars[Math.floor(Math.random() * chars.length)];
                ctx.fillText(text, i*fontSize, drops[i]*fontSize);

                if(drops[i]*fontSize > canvas.height && Math.random() > 0.975) {
                    drops[i] = 0;
                }
                drops[i]++;
            }
        }

        setInterval(draw, 50);
        window.addEventListener('resize', () => {
            canvas.width = window.innerWidth
            canvas.height = window.innerHeight
        });
    </script>
</body>
</html>

        
预览
控制台