Hi,歡迎訪問前端老白
<canvas id="canvas" width="400" height="300"></canvas> <script> // 獲取canvas元素 var canvas = document.getElementById("canvas"); // 獲取上下文 var context = canvas.getContext("2d"); // 設置字體樣式 context.font = "50px serif"; // 設置字體顏色 context.fillStyle = "red"; // 創建激光效果 context.shadowColor = "white"; context.shadowOffsetX = 0; context.shadowOffsetY = 0; context.shadowBlur = 20; // 繪制文字 context.fillText("Hello World!", 50, 80); </script>
老白網絡 (http://www.lofty888.cn/) 前端 后端 zblog主題.網站地圖xml