下面是一个非常酷的angularjs应用程序的示例,它具有拖放功能。它使用ngDraggable模块。
http://jsfiddle.net/zargyle/35z4J/
<div ng-app="test" ng-controller="testCtrl">
<div id="container">
<div class="shape" ng-draggable='dragOptions'></div>
</div>
</div>
背景是黑色的。用户可以拖动白色方块。我想做两件事;
答案 0 :(得分:1)
检查此链接
http://jsfiddle.net/35z4J/113/
#container {
width : auto;
height: 1200px;
background:url('http://i.stack.imgur.com/GgZvy.jpg');
background-repeat:no-repeat;
}
.shape {
position: absolute;
width : 200px;
height: 500px;
background:url('http://i.stack.imgur.com/NGQbN.png');
background-repeat:no-repeat;
}