ANGULARJS drag and drop angularjs - Net-Raft.com

Welcome aboard! We are happy you are here and wish you good net-raft!




Just a Web Code Solution
join us

drag and drop angularjs


 231

ANGULARJS


2

<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<script src="Script.js"></script>
<body ng-app="mydrag">
<div draggable>drag me</div>
</body>
</html>

// put into script.js
(function(angular) {
'use strict';
angular.module('mydrag', []).
directive('draggable', function($document) {
return function(scope, element, attr) {
var startX = 0, startY = 0, x = 0, y = 0;
element.css({
position: 'relative',
border: '2px solid black',
backgroundColor: 'yellow',
cursor: 'pointer',
display: 'block',
width: '70px'
});
element.on('mousedown', function(event) {
event.preventDefault();
startX = event.screenX - x;
startY = event.screenY - y;
$document.on('mousemove', mousemove);
$document.on('mouseup', mouseup);
});

function mousemove(event) {
y = event.screenY - startY;
x = event.screenX - startX;
element.css({
top: y + 'px',
left: x + 'px'
});
}

function mouseup() {
$document.off('mousemove', mousemove);
$document.off('mouseup', mouseup);
}
};
});
})(window.angular);


By        
The power of the user (%)
7%



The most helpful ANGULARJS solutions

How to get client ip address using angularjs ?How to get client ip address using angularjs ?ANGULARJS

Click to see more ...

  20.6K     3K

How to get city from ip address with angularjs ?How to get city from ip address with angularjs ?ANGULARJS

Click to see more ...

  8.3K     1.4K

how to get client machine name and user name using angularjs ?how to get client machine name and user name using angularjs ?ANGULARJS

Click to see more ...

  13.3K     796

How to get local client ip address using angularjs ?How to get local client ip address using angularjs ?ANGULARJS

Click to see more ...

  6.3K     571

get client country using angularjs ?get client country using angularjs ?ANGULARJS

Click to see more ...

  3.2K     477

get region angularjsget region angularjsANGULARJS

Click to see more ...

  3.1K     414

How to get value from a href using angularjs ?How to get value from a href using angularjs ?ANGULARJS

Click to see more ...

  2.4K     369

how to fill a list from an another file in json format using angularjs ?how to fill a list from an another file in json format using angularjs ?ANGULARJS

Click to see more ...

  2.3K     352

How to move the value of checkbox to an html element in angular.js ?How to move the value of checkbox to an html element in angular.js ?ANGULARJS

Click to see more ...

  2.8K     203

get client time zone using angularjs get client time zone using angularjs ANGULARJS

Click to see more ...

  2.5K     201

Welcome aboard!
We are happy you are here and
wish you good net-raft!