three实现3d三维切水果游戏代码

代码语言:html

所属分类:游戏

代码描述:three实现3d三维切水果游戏代码

代码标签: three 3d 三维 切水果 游戏 代码

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
    <title>🍉 3D 切水果大师</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            touch-action: none;
            user-select: none;
        }

        body {
            overflow: hidden;
            background: #000;
            font-family: 'Arial', sans-serif;
        }

        #gameCanvas {
            width: 100vw;
            height: 100vh;
            display: block;
        }

        /* 刀光轨迹 */
        #sliceCanvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 10;
        }

        /* UI层 */
        .ui-layer {
            position: fixed;
            z-index: 100;
            pointer-events: none;
        }

        /* 分数显示 */
        .score-panel {
            top: 20px;
            left: 20px;
        }

        .score-box {
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 15px 25px;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .score-label {
            font-size: 14px;
            color: #888;
            text-transform: uppercase;
        }

        .score-value {
            font-size: 48px;
            font-weight: bold;
            color: #fff;
            text-shadow: 0 0 20px rgba(255, 200, 0, 0.8);
        }

        /* 连击显示 */
        .combo-panel {
            top: 20px;
            right: 20px;
            text-align: right;
        }

        .combo-value {
            font-size: 36px;
            font-weight: bold;
            color: #ff6b6b;
            text-shadow: 0 0 20px rgba(255, 107, 107, 0.8);
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.3s ease;
        }

        .combo-value.active {
            opacity: 1;
            transform: scale(1);
        }

        .combo-value.big {
            transform: scale(1.5);
            color: #ffd93d;
        }

        /* 生命值 */
        .lives-panel {
            bottom: 20px;
            left: 20px;
        }

        .lives-container {
            display: flex;
            gap: 10px;
        }

        .life-heart {
            font-size: 32px;
            filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
            transition: all 0.3s;
        }

        .life-heart.lost {
            filter: grayscale(1);
            opacity: 0.3;
        }

        /* 开始界面 */
        .start-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            transition: opacity 0.5s, visibility 0.5s;
        }

        .start-screen.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .game-title {
            font-size: 72px;
            margin-bottom: 20px;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .game-subtitle {
            font-size: 24px;
            color: #888;
            margin-bottom: 50px;
        }

        .start-btn {
            padding: 20px 60px;
            font-size: 24px;
            font-weight: bold;
            color: #fff;
            background: linear-gradient(135d.........完整代码请登录后点击上方下载按钮下载查看

网友评论0