0
我想在使用angularJS的HTML畫布中創建一些圓圈。 我知道如何做到這一點使用JavaScript,但我是新的angularJS和任何幫助,非常感謝。使用AngularJS創建HTML畫布元素
代碼:
<title>Home Page</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.3/angular.min.js"></script>
</head>
<body>
<div ng-app="myapp" ng-controller="myctrl">
<canvas id="canvas" width="2100" height="900"
style="border: 1px solid #d3d3d3;">
</canvas>
</div>
<script>
var $scope;
var app = angular.module('myapp', []);
myapp.controller("myctrl", function($scope){
var c1 = document.getElementById("canvas");
var ctx = c1.getContext("2d");
ctx.beginPath();
ctx.arc(500, 500, 50, 0, 2 * Math.PI, false);
ctx.lineWidth = 0.2;
ctx.stroke();
ctx.fill();
})
</script>
</body>
喜請擊鏈接:https://github.com/ActivKonnect/angular-circles 也http://htmlpreview.github.io/?https://github.com/ActivKonnect/angular-circles/ blob/master/example/index.html –
非常感謝您的幫助..但我想知道是否有辦法處理我的代碼。 –