jQuery滑鼠拖動調整數字大小
本章節分享一段程式碼例項,它實現了使用滑鼠拖動調整數字大小的功能。
程式碼例項如下:
[HTML] 純文字檢視 複製程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style type="text/css"> #Main { width: 70%; height: 300px; margin: 0 auto; margin-top: 10px; } #scrollBar { width: 80%; height: 10px; background-color: #ccc; margin: 0 auto; margin-top: 50px; -webkit-border-radius: 2em; -moz-border-radius: 2em; border-radius: 2em; cursor: pointer; } #scroll_Track { width: 0px; height: 10px; background-color: #ff4400; -webkit-border-radius: 2em; -moz-border-radius: 2em; border-radius: 2em; } #scroll_Thumb { height: 25px; width: 25px; background-color: #efefef; -webkit-border-radius: 2em; -moz-border-radius: 2em; border-radius: 2em; border: 1px solid #ccc; -webkit-box-shadow: 0px 0px 5px #ccc; -moz-box-shadow: 0px 0px 5px #ccc; box-shadow: 0px 0px 5px #ccc; position: absolute; margin-top: -18px; cursor: pointer; } #scroll_Thumb:hover { background-color: #ff4400; border: 1px solid #fff; } #progressBar { width: 80%; height: 10px; background-color: #ccc; margin: 0 auto; margin-top: 50px; -webkit-border-radius: 2em; -moz-border-radius: 2em; border-radius: 2em; } #progressBar_Track { width: 200px; height: 10px; background-color: #ff4400; -webkit-border-radius: 2em; -moz-border-radius: 2em; border-radius: 2em; } #beian { text-align: center; float: left; width: 100%; margin-top: 50px } #beian a { color: gray; font: 13px "微軟雅黑", Arial, Helvetica, sans-serif; } .progressTime { filter: alpha(opacity=50); -moz-opacity: 0.5; -khtml-opacity: 0.5; opacity: 0.5; position: absolute; _position: fixed; left: 25%; top:25%; Z-INDEX: 2; border: 1px solid gray; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; color: white; background: #000; width: 660px; height:200px; padding-top: 0px; padding-bottom: 0px; } </style> <script src="http://libs.baidu.com/jquery/1.11.1/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function(e) { //設定最大值 ScrollBar.maxValue = 100; //初始化 ScrollBar.Initialize(); //設定最大值 ProgressBar.maxValue = 100; //設定當前刻度 var index = 0; var mProgressTimer = setInterval(function() { index += 2; ProgressBar.SetValue(index); }, 100); }); var ScrollBar = { value: 20, maxValue: 100, step: 1, currentX: 0, Initialize: function() { if (this.value > this.maxValue) { alert("給定當前值大於了最大值"); return; } this.GetValue(); $("#scroll_Track").css("width", this.currentX + 2 + "px"); $("#scroll_Thumb").css("margin-left", this.currentX + "px"); this.Value(); $("#scrollBarTxt").html(ScrollBar.value + "/" + ScrollBar.maxValue); }, Value: function() { var valite = false; var currentValue; $("#scroll_Thumb").mousedown(function() { valite = true; $(document.body).mousemove(function(event) { if (valite == false) return; var changeX = event.clientX - ScrollBar.currentX; currentValue = changeX - ScrollBar.currentX - $("#Demo").offset().left; $("#scroll_Thumb").css("margin-left", currentValue + "px"); $("#scroll_Track").css("width", currentValue + 2 + "px"); if ((currentValue + 25) >= $("#scrollBar").width()) { $("#scroll_Thumb").css("margin-left", $("#scrollBar").width() - 25 + "px"); $("#scroll_Track").css("width", $("#scrollBar").width() + 2 + "px"); ScrollBar.value = ScrollBar.maxValue; } else if (currentValue <= 0) { $("#scroll_Thumb").css("margin-left", "0px"); $("#scroll_Track").css("width", "0px"); } else { ScrollBar.value = Math.round(100 * (currentValue / $("#scrollBar").width())); } $("#scrollBarTxt").html(ScrollBar.value + "/" + ScrollBar.maxValue); }); }); $(document.body).mouseup(function() { ScrollBar.value = Math.round(100 * (currentValue / $("#scrollBar").width())); valite = false; if (ScrollBar.value >= ScrollBar.maxValue) ScrollBar.value = ScrollBar.maxValue; if (ScrollBar.value <= 0) ScrollBar.value = 0; $("#scrollBarTxt").html(ScrollBar.value + "/" + ScrollBar.maxValue); }); }, GetValue: function() { this.currentX = $("#scrollBar").width() * (this.value / this.maxValue); } } var ProgressBar = { maxValue: 100, value: 20, SetValue: function(aValue) { this.value = aValue; if (this.value >= this.maxValue) this.value = this.maxValue; if (this.value <= 0) this.value = 0; var mWidth = this.value / this.maxValue * $("#progressBar").width() + "px"; $("#progressBar_Track").css("width", mWidth); $("#progressBarTxt").html(this.value + "/" + this.maxValue); } } </script> </head> <body> <div id="Demo" class="progressTime" > <div id="Main"> <div id="scrollBar"> <div id="scroll_Track"></div> <div id="scroll_Thumb"></div> </div> <p id="scrollBarTxt" style="text-align:center;"></p> <div id="progressBar"> <div id="progressBar_Track"></div> </div> <p id="progressBarTxt" style="text-align:center;"></p> </div> </div> </body> </html>
相關文章
- JavaScript滑鼠拖動調整div大小JavaScript
- jQuery實現的拖動調整表格td單元格的大小jQuery
- jQuery拖動調整左右兩列寬度jQuery
- Winform中實現拖動 Windows 邊緣來調整其大小ORMWindows
- JavaScript 拖動調整元素尺寸JavaScript
- JavaScript拖動調整元素的尺寸JavaScript
- js拖動調整元素寬度JS
- Jquery實現滑鼠拖動改變div高度jQuery
- 通過滑鼠拖動選取指定數字程式碼例項
- 動態等比例調整圖片大小的jQuery程式碼jQuery
- win10如何調滑鼠dpi數值_win10調整滑鼠dpi數值教程Win10
- Win10滑鼠移動速度太快如何調整_win10調整滑鼠移動速度的步驟Win10
- jquery拖動程式碼jQuery
- 從零開始,開發一個 Web Office 套件(16):拖動控制點,調整編輯器大小Web套件
- js通過拖動調整元素位置程式碼例項JS
- 如何調整Pycharm字型大小PyCharm
- sga_target大小調整
- kindeditor 上傳圖片 自動調整尺寸大小
- 根據viewport的size自動調整fontsize大小View
- 批量調整視訊尺寸大小的方法,一鍵自動批量調整視訊
- JavaScript拖動滑鼠繪製矩形方框JavaScript
- canvas 按住滑鼠拖動 繪製文字Canvas
- Excel如何調整圖片大小Excel
- launchpad圖示大小怎麼調整?mac圖示調整大小方法介紹Mac
- javascript div元素滑鼠拖動效果詳解JavaScript
- jQuery Validate限定輸入數字大小的範圍jQuery
- jQuery 動態數字顯示jQuery
- 自動記憶體調整中真正決定自動調整的引數記憶體
- Linux系統調整swap大小Linux
- 如何調整Docker裡面的Image 大小?Docker
- wps批量調整圖片大小
- ORACLE RAC+DG調整redo大小Oracle
- Oracle調整redo log日誌大小Oracle
- 手動上傳圖片,怎麼調整大小和居中
- 通過拖動實現調整元素之間位置程式碼例項
- jQuery調整li元素順序jQuery
- jquery div層拖動效果封裝jQuery封裝
- Qt/C++地圖動態繪製折線多邊形矩形圓形標註點/可編輯拖動調整大小和位置QTC++地圖