jQuery implements drag and drop of html elements_jquery
The code is very simple and the effect is great. I will give you the source code directly:
html
<div> <div class="money-input"> 定投金额 : <div class="input-rela"> <input type="text" placeholder="2000"/> <span>元</span> </div> </div> <div class="money-line"> <img index="js-minus-a" class="js-minus" src="../images/minus.png" alt=""/> <img id="dragImg" class="red-rela" src="../images/money-dw.png" alt="" onDrag="drag(event)" onDragEnd="dragEnd(event)" style="left: 265px;"/> <img id="dragLine" class="line3" src="../images/money-line.png" alt=""/> <img index="js-plus-a" class="js-plus" src="../images/plus.png" alt="" style="margin-left: 880px;"/> </div> <div class="money-desc"> <span style="margin-left: 65px;">100</span> <span>500</span> <span>1000</span> <span>2000</span> <span>3000</span> <span>4000</span> <span>5000</span> <span>6000</span> <span>7000</span> <span>8000</span> <span>9000</span> <span>10000</span> </div> <p>单位:元</p> </div>
css
.money-input{margin:36px auto 0;width:330px;font-size:14px;color:#818181} .input-rela{width:250px;height:42px;display:inline-block;position:relative} .input-rela>input{width:inherit;height:38px;border:1px solid #eee} .input-rela>span{position:absolute;right:10px;top:13px} .money-line{width:970px;margin:60px auto 0;position:relative} .line3{position:absolute;left:40px;top:10px} .red-rela{position:absolute;top:0;z-index:2;cursor:pointer} .money-desc,.month-desc{font-size:12px;color:#818181} .money-desc+p,.month-desc+p{margin-right:60px;text-align:right;color:#5a5a5a} .money-desc>span{display:inline-block;width:71px} .month-desc>span{display:inline-block;width:79px}
js
/** * Created by cq on 2015/6/15. */ $(function(){ $('.js-minus').click(function(){ /* min need calculate*/ var index = $(this).attr("index") var move,min; if(index=="js-minus-a"){ move = 77; min = 34; } if(index=="js-minus-b"){ move = 85; min = 36; } var redPoint = $(this).next() var left = redPoint.css("left") var leftInt = left.replace(/px/g,"") if((parseInt(leftInt)-move)>=min){ var newLeft = (parseInt(leftInt)-move)+"px" redPoint.css("left",newLeft) var num = parseInt ( (parseInt(leftInt)-move-min) / move ) var input = $(this).parent().prev().find("input") if(index=="js-minus-a"){ var spans = $(this).parent().next().find("span") var html = spans.eq(num).html() input.val(html) } if(index=="js-minus-b"){ input.val(getMonth(num)) } } }) $('.js-plus').click(function(){ /* max and min need calculate*/ var index = $(this).attr("index") var move , max , min ; if(index=="js-plus-a"){ move = 77; //ÿ��ƫ���� max = 881; //�������� min = 34; //��Сƫ���� } if(index=="js-plus-b"){ move = 85; max = 886; min = 36; } var redPoint = $(this).prev().prev() var left = redPoint.css("left") var leftInt = left.replace(/px/g,"") if((parseInt(leftInt)+move)<=max){ var newLeft = (parseInt(leftInt)+move)+"px" redPoint.css("left",newLeft) var num = parseInt( (parseInt(leftInt)+move-min) / move ) var input = $(this).parent().prev().find("input") if(index=="js-plus-a"){ var spans = $(this).parent().next().find("span") var html = spans.eq(num).html() input.val(html) } if(index=="js-plus-b"){ input.val(getMonth(num)) } } }) /*move img js*/ var offsetx = 0, offsety = 0; var dragImg = document.getElementById("dragImg") dragImg.addEventListener("mousedown",beforeDrag,true); }) function beforeDrag(ev){ dragImg = ev.target; var l = dragImg.offsetLeft; var t = dragImg.offsetTop; offsetx = ev.clientX - l; offsety = ev.clientY - t; } function drag(e){ e.preventDefault(); /*min need calculate*/ var ml = 8,mr = 20,maxy = 70,moveWidth = 77,min=34; var dragImg = e.target; var dragLine = document.getElementById("dragLine"); var movex = e.clientX - offsetx; var movey = e.clientY - offsety; var minPY = dragLine.offsetLeft-ml; var maxPY = dragLine.offsetLeft+dragLine.clientWidth-mr; if(Math.abs(movey)>maxy){ return } if(movex<minPY){ dragImg.style.left = minPY + "px"; return } if(movex>maxPY){ dragImg.style.left = maxPY + "px"; return } dragImg.style.left = movex + "px"; } function dragEnd (e){ e.preventDefault(); /*min need calculate*/ var ml = 8,mr = 20,maxy = 70,moveWidth = 77,min=34; var dragImg = e.target; var dragLine = document.getElementById("dragLine"); var movex = e.clientX - offsetx; var movey = e.clientY - offsety; var minPY = dragLine.offsetLeft-ml; var maxPY = dragLine.offsetLeft+dragLine.clientWidth-mr; if(movex<minPY){ dragImg.style.left = minPY + "px"; $(dragImg).parent().prev().find("input").val(100) return } if(movex>maxPY){ dragImg.style.left = maxPY + "px"; $(dragImg).parent().prev().find("input").val(10000) return } /*dragEnd xifu*/ var num = parseInt ( movex / moveWidth ) dragImg.style.left = (min+moveWidth*num) + "px"; /*dragEnd set input*/ var thisNode = $(dragImg) var spans = thisNode.parent().next().find('span') var html = spans.eq(num).html() var input = thisNode.parent().prev().find("input") input.val(html) } /* function init() { document.body.onmousemove = function(e) { if (!e) { e = window.event; } else { e.srcElement = e.target; } document.getElementById("divDebug").innerHTML = "mousemove (" + e.clientX + "," + e.clientY + ") srcElement=" + e.srcElement.tagName + "[" + e.srcElement.id + "]"; } }*/
The above is the entire content of this article, I hope you all like it.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Detailed explanation of jQuery reference method: Quick start guide jQuery is a popular JavaScript library that is widely used in website development. It simplifies JavaScript programming and provides developers with rich functions and features. This article will introduce jQuery's reference method in detail and provide specific code examples to help readers get started quickly. Introducing jQuery First, we need to introduce the jQuery library into the HTML file. It can be introduced through a CDN link or downloaded

How to use PUT request method in jQuery? In jQuery, the method of sending a PUT request is similar to sending other types of requests, but you need to pay attention to some details and parameter settings. PUT requests are typically used to update resources, such as updating data in a database or updating files on the server. The following is a specific code example using the PUT request method in jQuery. First, make sure you include the jQuery library file, then you can send a PUT request via: $.ajax({u

How to remove the height attribute of an element with jQuery? In front-end development, we often encounter the need to manipulate the height attributes of elements. Sometimes, we may need to dynamically change the height of an element, and sometimes we need to remove the height attribute of an element. This article will introduce how to use jQuery to remove the height attribute of an element and provide specific code examples. Before using jQuery to operate the height attribute, we first need to understand the height attribute in CSS. The height attribute is used to set the height of an element

Title: jQuery Tips: Quickly modify the text of all a tags on the page In web development, we often need to modify and operate elements on the page. When using jQuery, sometimes you need to modify the text content of all a tags in the page at once, which can save time and energy. The following will introduce how to use jQuery to quickly modify the text of all a tags on the page, and give specific code examples. First, we need to introduce the jQuery library file and ensure that the following code is introduced into the page: <

jQuery is a fast, small, feature-rich JavaScript library widely used in front-end development. Since its release in 2006, jQuery has become one of the tools of choice for many developers, but in practical applications, it also has some advantages and disadvantages. This article will deeply analyze the advantages and disadvantages of jQuery and illustrate it with specific code examples. Advantages: 1. Concise syntax jQuery's syntax design is concise and clear, which can greatly improve the readability and writing efficiency of the code. for example,

Title: Use jQuery to modify the text content of all a tags. jQuery is a popular JavaScript library that is widely used to handle DOM operations. In web development, we often encounter the need to modify the text content of the link tag (a tag) on the page. This article will explain how to use jQuery to achieve this goal, and provide specific code examples. First, we need to introduce the jQuery library into the page. Add the following code in the HTML file:

How to tell if a jQuery element has a specific attribute? When using jQuery to operate DOM elements, you often encounter situations where you need to determine whether an element has a specific attribute. In this case, we can easily implement this function with the help of the methods provided by jQuery. The following will introduce two commonly used methods to determine whether a jQuery element has specific attributes, and attach specific code examples. Method 1: Use the attr() method and typeof operator // to determine whether the element has a specific attribute

jQuery is a popular JavaScript library that is widely used to handle DOM manipulation and event handling in web pages. In jQuery, the eq() method is used to select elements at a specified index position. The specific usage and application scenarios are as follows. In jQuery, the eq() method selects the element at a specified index position. Index positions start counting from 0, i.e. the index of the first element is 0, the index of the second element is 1, and so on. The syntax of the eq() method is as follows: $("s
