今天给大家分享两种css艺术字代码,需要的同学请收藏~
1,CSS方式
css部分
<style type="text/css">
.logo-self {
font-size: 40px;
text-shadow: 5px 5px 5px black, 0px 0px 2px black;
color: white;
}
</style>
页面引用部分
<div class="logo-self">HTML5</div>
2,canvas方式
脚本部分
<script type="text/javascript">
function drawText() {
var canvas = document.getElementById("canvas");
var ctx = canvas.getContext("2d");
ctx.font = "35px 微软雅黑";
ctx.strokeText("VVHi",50,50);
}
</script>
页面引用部分
<body onload="drawText();">
<div>
<canvas id="canvas" width="200" height="100"></canvas>
</div>
</body>
好啦,以上便是关于css艺术字代码,这两种方式不得不知的全部内容,更多内容干货可关注慕课网~