使用js或者jq設定滾動條滾動位置

2021-08-15 03:33:38 字數 666 閱讀 2349

js原生設定x軸和y軸就乙個方法,首先獲取到dom物件,然後設定位置即可,

dom.scrollto(x,y); //x為水平方向的滾動條位置,y為垂直方向的滾動條位置
如果只想設定y軸的滾動條位置,首先需要獲取到當前x軸的滾動條位置,然後再設定y軸,如:

dom.scrollto(dom.scrollleft, 100); //設定y軸滾動一百畫素

dom.scrollto(100, dom.scrolltop); //設定x軸滾動一百畫素

jq的相關方法為,設定x軸

$(

"#id").scrolltop(100); //設定y軸滾動條位置為滾動100畫素的位置

$("#id").scrolltop(); //返回當前滾動條y軸的滾動的位置

設定y軸

$(

"#id").scrollleft(100); //設定x軸滾動條位置為滾動100畫素的位置

$("#id").scrollleftp(); //返回當前滾動條x軸的滾動的位置

谷歌滾動條設定 IE滾動條設定

google瀏覽器chrome設定滾動條樣式 courrlist webkit scrollbar courrlist webkit scrollbar track courrlist webkit scrollbar thumb courrlist webkit scrollbar thumb w...

jsp ul設定滾動條 定義設定滾動條

定義滾動條就是利用偽元素與偽類,那什麼是偽元素和偽類呢?偽類大家應該很熟悉 link,focus,hover,此外css3中又增加了許多偽類選擇器,如 nth child,last child,nth last of type 等。在以前的基礎上增加了乙個 也就是現在變成了 first letter...

滾動條設定

dllimport user32.dll public static extern int setscrollpos intptr hwd,int nbar,int npos,bool bredraw public static extern int getscrollpos intptr hwd,...