jquery 마우스 드래그 효과 공유
3309 단어 jquery
//html
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="../js/jquery-1.11.1.js"></script>
</head>
<style>
body{
padding: 0;
margin: 0;
}
.w{
width: 600px;
height: 600px;
background-color: red;
position: absolute;
left: 0;
top: 0;
}
.a{
width: 600px;
height: 50px;
cursor: move;
background-color: yellowgreen;
position: absolute;
left: 0;
top:0;
}
</style>
<body>
<div class="w">
<div class="a"></div>
</div>
</body>
</html>
//드래그할 부분에 포지셔닝 속성을 추가해야 합니다
//jquery
<script>
//
(function($){
$.fn.wwp_tz = function(opt){
var defaults = {
};
var options = $.extend({},defaults,opt);
this.each(function(){
var $this = $(this);
var L=0,T=0;
$this.mousedown(function(event){
$this.data("down","1");
var X = event.clientX; // X ;
var Y = event.clientY; // Y ;
var offset = $this.offset();
var box_x = offset.left; // x ;
var box_y = offset.top; // y ;
L = X-box_x; // ;
T = Y-box_y;
}).mousemove(function(event){
if($this.data("down") == 1){
var X = event.clientX; // X ;
var Y = event.clientY; // Y ;
var box_left = X-L; //
var box_top = Y-T;
if(options.dom == 1){
$this.css({left:box_left+"px",top:box_top+"px"})
}else if(options.dom == 2){
$this.parent().css({left:box_left+"px",top:box_top+"px"})
}
}else{
return false;
}
}).mouseup(function(){ //
$this.data("down","-1");
}).mouseleave(function(){ //
$this.data("down","-1");
});
})
}
})(jQuery);
//
$(function(){
$(".a").wwp_tz({
dom:2 // 1 ,2
})
});
</script>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
jQuery 전후 예이 기사에서는 jquery after() 및 before() 메소드의 예를 볼 것입니다. before() 메서드는 선택한 요소 앞에 지정된 콘텐츠를 삽입합니다. after() 메서드는 선택한 요소 뒤에 지정된 콘텐츠...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.