您好,登錄后才能下訂單哦!
當拖拽對象時定位光標。默認情況下,光標是出現在被拖拽對象的中間。使用 cursorAt 選項來指定相對于 draggable 的另一個 位置(指定一個相對于 top、right、bottom、left 的像素值)。通過提供一個帶有有效的 CSS 光標值的 cursor 選項,來自 定義光標的外觀
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>光標樣式</title> <link rel="stylesheet" href="js/jquery-ui-1.12.1.custom/jquery-ui-1.12.1.custom/jquery-ui.min.css"> <style> #draggable1,#draggable2,#draggable3,#draggable4,#draggable5,#draggable6{ width: 100px; height: 100px; padding: 0.5em; float: left; margin: 0 10px 10px 0; } </style> </head> <body> <div id="draggable1" class="ui-widget-content"> <p>我總是在中間(相對于鼠標)</p> </div> <div id="draggable2" class="ui-widget-content"> <p>我的光標是在 left -5 和 top -5</p> </div> <div id="draggable3" class="ui-widget-content"> <p>我的光標位置只控制了 'top' 值</p> </div> <div id="draggable4" class="ui-widget-content"> <p>我的光標位置只控制了 'right' 值</p> </div> <div id="draggable5" class="ui-widget-content"> <p>我的光標位置只控制了 'bottom' 值</p> </div> <div id="draggable6" class="ui-widget-content"> <p>我的光標位置只控制了 'left' 值</p> </div> <script src="js/jquery-ui-1.12.1.custom/jquery-ui-1.12.1.custom/external/jquery/jquery.js" type="text/javascript" ></script> <script src="js/jquery-ui-1.12.1.custom/jquery-ui-1.12.1.custom/jquery-ui.min.js"></script> <script> $("#draggable1").draggable({ cursor:"move", cursorAt:{ top:56, left:56 } }); $("#draggable2").draggable({ cursor:"move", cursorAt:{ top:-5, left:-5 } }); $("#draggable3").draggable({ cursor:"move", cursorAt:{ top:0 } }); $("#draggable4").draggable({ cursor:"move", cursorAt:{ right:0 } }); $("#draggable5").draggable({ cursor:"move", cursorAt:{ bottom:0 } }); $("#draggable6").draggable({ cursor:"move", cursorAt:{ left:0 } }); </script> </body> </html>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。