這篇文章主要為大家詳細(xì)介紹了js+canvas實現(xiàn)畫板功能,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下
本文實例為大家分享了js+canvas實現(xiàn)畫板功能的具體代碼,供大家參考,具體內(nèi)容如下
1.實現(xiàn)了畫圖,改變畫筆粗細(xì),改變畫筆顏色,清屏功能
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>畫板</title>
<link rel="shortcut icon" type="image/x-icon" href="img/an.ico" />
<link rel="stylesheet" type="text/css" href="css/drow.css" />
</head>
<body>
<canvas id="mycanvas" width="1100px" height="660px"></canvas>
<div class="tool">
畫筆顏色:<input type="color" name="color1" id="color1"/><br />
畫筆粗細(xì):<input type="range" name="range1" id="range1"min="1" max="20"/><br />
<button class="btn">清屏</button>
</div>
</body>
<script src="js/drow.js" type="text/javascript" charset="utf-8"></script>
</html>
*{
margin: 0;
padding: 0;
text-align: left;
-moz-user-select: none;
-ms-user-select: none;
-webkit-user-select: none;
}
#mycanvas{
border: 2px solid deepskyblue;
}
.tool{
width: 260px;
height: 100%;
position: fixed;
right: 0;
top: 0;
background-color: #CCCCCC;
}
*{
margin: 0;
padding: 0;
text-align: left;
-moz-user-select: none;
-ms-user-select: none;
-webkit-user-select: none;
}
#mycanvas{
border: 2px solid deepskyblue;
}
.tool{
width: 260px;
height: 100%;
position: fixed;
right: 0;
top: 0;
background-color: #CCCCCC;
}
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
來源:腳本之家
鏈接:https://www.jb51.net/article/195520.htm
申請創(chuàng)業(yè)報道,分享創(chuàng)業(yè)好點子。點擊此處,共同探討創(chuàng)業(yè)新機遇!