指定div滾到到指定位置
當前位置:點晴教程→知識管理交流
→『 技術文檔交流 』
// 答題卡位置隨滾動條變化 window.onscroll = function(){ var a = document.documentElement.scrollTop || document.body.scrollTop;//滾動條y軸上的距離 var b = document.documentElement.clientHeight || document.body.clientHeight;//可視區(qū)域的高度 var c = document.documentElement.scrollHeight || document.body.scrollHeight;//可視化的高度與溢出的距離(總高度) var abc = $('.stb-content-test').offset().top; // 若滾動高度大于 if(abc >= a){ $('.stb-content-answer-div').css('top', aaa - a + 'px') } else{ $('.stb-content-answer-div').css('top','0') } } 該文章在 2023/12/12 15:57:45 編輯過 |
關鍵字查詢
相關文章
正在查詢... |