私はangularに非常に慣れていないので、理解不足を許してください。
「ドラッグ可能」と呼ばれるディレクティブがあり、コントローラーで x 位置を追跡してロジックを実行できるようにしたいと考えています。ユーザーが要素 (棒人間) を右にドラッグすると、追加の棒人間がそのすぐ後ろに表示されます。コントローラーは x 位置を認識し、その位置に基づいて、ドラッグ可能な要素の背後に表示される棒線画の数を決定するカウンターをインクリメントする必要があります。
コントローラーが x の値を受信していないため、このコードは現在機能しません。
私の指示:
app.directive('draggable', function() {
return {
restrict: 'A',
scope: "=x",
link: function (scope, element, attrs) {
$(element).draggable({
containment: "parent",
axis: "x",
drag: function(){
scope.x = $(this).offset().left;
}
});
}
};
});
私のコントローラー:
app.controller("main-controller", function($scope) {
$scope.range = function(n) {
return new Array(figures);
};
$scope.$watch("x", function(){
console.log($scope.x);
figures = x / (stick_figure_height)
});
});
私のHTML:
<div class="human-slider" ng-controller="main-controller">
<div draggable class="human-draggable">
<img src="images/stickfigure.png"/>
</div>
<div ng-repeat="i in range()">
<img src="images/stickfigure.png"/>
</div>
</div>