canvas 画布效果

空心文本

<canvas id="myCanvas" width="300" height="100"></canvas>
// canvas绘制空心文本
var canvas = document.getElementById('myCanvas');
var ctx = canvas.getContext('2d');

ctx.font = 'italic bold 65px 宋体';
ctx.lineWidth = 2;
ctx.strokeStyle = '#f91a15';
ctx.strokeText('全民战役', 10, 70);

实心文本

<body>
<canvas id="myCanvas" width="578" height="200"></canvas>
<script>
    var canvas = document.getElementById('myCanvas');
    var context = canvas.getContext('2d');

    // do cool things with the context
    context.font = '40pt Calibri';
    context.fillStyle = 'blue';
    context.fillText('Hello World!', 150, 100);
</script>
</body>

五角星

<!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>五角星</title>
</head>

<body>
    <canvas id="canvas" width="400" height="400"></canvas>

    <script>
        // 使用id来寻找canvas元素
        var myCanvas = document.getElementById('canvas');
        if (myCanvas.getContext) {
     
            // 创建context对象
            // getContext("2d") 对象是内建的 HTML5 对象,拥有多种绘制路径、矩形、圆形、字符以及添加图像的方法
            var ctx = myCanvas.getContext("2d");
            // beginPath:开始绘制一段新的路径
            ctx.beginPath();
            var horn = 5; // 画5个角
            var angle = 360 / horn; // 五个角的度数
            // 两个圆的半径
            var R = 200;
            var r = 80;
            // 坐标
            var x = 200;
            var y = 200;
            for (var i = 0; i < horn; i++) {
     
                // 角度转弧度:角度/180*Math.PI
                // 外圆顶点坐标
                ctx.lineTo(Math.cos((18 + i * angle) / 180 * Math.PI) * R + x, -Math.sin((18 + i * angle) / 180 * Math
                    .PI) * R + y);
                // 內圆顶点坐标
                ctx.lineTo(Math.cos((54 + i * angle) / 180 * Math.PI) * r + x, -Math.sin((54 + i * angle) / 180 * Math
                    .PI) * r + y);
            }
            // closePath:关闭路径,将路径的终点与起点相连
            ctx.closePath();
            ctx.lineWidth = "3";
            ctx.fillStyle = '#E4EF00'; //填充颜色
            ctx.strokeStyle = "red"; //边框颜色
            ctx.fill();
            ctx.stroke();
        }
    </script>
</body>

</html>

动态时钟

<!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>动态时钟</title>
    <style>
        * {
     
            margin: 0;
            padding: 0;
        }

        div {
     
            text-align: center;
        }

        div.box {
     
            margin: 50px auto;
            text-align: center;
            font-size: 30px;
            display: flex;
            align-content: center;
            justify-content: center;
        }

        span {
     
            display: inline-block;
            width: 50px;
            height: 50px;
            line-height: 50px;
            border: 2px solid #ccc;
            font-size: 20px;
            margin: 0px 20px;
        }
    </style>
</head>

<body>
    <div class="box">
        <span id="hour"></span>:
        <span id="minute"></span>:
        <span id="second"></span>
    </div>
    <div
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值