我需要帮助为我的天气应用程序绘制透视文字。 我需要以不透明显示的温度才能保持美观,
如何在Canvas中做到这一点?
请帮助! 预先感谢!
答案 0 :(得分:0)
您将不得不使用它,但类似:
<html>
<body>
<canvas id="myCanvas" width="300" height="150" style="border:1px solid #d3d3d3;">
Your browser does not support the HTML5 canvas tag.</canvas>
<script>
var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
// code to draw picture as normal
ctx.globalAlpha = 0.5;
// code to draw text
</script>
</body>
</html>