Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 623 Bytes

README.md

File metadata and controls

32 lines (26 loc) · 623 Bytes

HtmlDoodleBoard

涂鸦、橡皮擦、矩形、圆、箭头

使用例子

$(document).ready(function(){
  ui.init();
  $.jrDraw.init("#canvasContainer");
});

var ui = {
    init: function () {
        $("#btnClear").bind("click",function(){
          $.jrDraw.clearMain();
          $.jrDraw.clearTemp();
        });

        $("#selWidth").change(function(){
		  $.jrDraw.setLineWidth($("#selWidth").val());
		});

        $("#selColor").change(function(){
		  $.jrDraw.setColor($("#selColor").val());
		});

        $("#selShape").change(function(){
		  $.jrDraw.setType($("#selShape").val());
		});
    }
}