Every line of 'scroll jquery' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
3 function scroll () { 4 if (window.location.hash === '') return 5 const anchor = $j('a[href="' + window.location.hash + '"]') 6 if (anchor) $j(window).scrollTop(anchor.offset().top) 7 }
10 function pageScroll() { 11 window.scrollBy(0, 1); 12 //$('#team-table-container .table').css("top", window.current_top); 13 14 console.log(window.pageYOffset, window.ScrollUntil); 15 if (window.pageYOffset < window.ScrollUntil && window.lastScrollPos != window.pageYOffset) { 16 window.lastScrollPos = window.pageYOffset; 17 notEnd = true; 18 } 19 else { 20 notEnd = false; 21 window.DoScroll = false; 22 window.scrollTo(0, 0); 23 $('#team-table').hide(); //Hide Table to reduce clutter 24 $('#drawdisplay').css("display", "block"); 25 if ($("#infoslide").length > 0) 26 $("#infoslide").removeAttr("disabled"); 27 } 28 29 if (window.DoScroll == true && notEnd) 30 scrolldelay = setTimeout('pageScroll()', (10 - window.ScrollSpeed) * 10); // scrolls every 100 milliseconds 31 }
18 function scrollParent($el){ 19 var $scroller = $(window); 20 $el.parents().each(function(i, el){ 21 var $el = $(el); 22 if(['auto', 'scroll'].indexOf($el.css('overflow-y')) > -1){ 23 $scroller = $el; 24 return false; 25 } 26 }); 27 28 return $scroller; 29 }
234 export function scroll(data: ScrollData, iframe: HTMLIFrameElement): void { 235 let target = getNode(data.target); 236 if (target) { target.scrollTo(data.x, data.y); } 237 }
37 function doScroll() { 38 var scroll = $(window).scrollTop(); 39 var windowHeight = $(window).height(); 40 var documentHeight = $(document).height(); 41 42 var heightLessScroll = (documentHeight - windowHeight) - scroll; 43 44 if (heightLessScroll <= MINIMUM_HEIGHT_FOR_TO_LOAD) { 45 // $('.show-more').trigger('click'); 46 } 47 }
28 function smoothScroll(left: number, top: number) { 29 try { 30 window.scroll({ 31 top, 32 left, 33 behavior: 'smooth', 34 }) 35 } catch (e) { 36 window.scroll(left, top) 37 } 38 }
42 function scrollTo(selector) { 43 $('#main-content').animate({scrollTop: $(selector).offset().bottom}, 'slow'); 44 }
88 function scrollHightlight(element) { 89 var $headers = $(element); 90 91 $(window).scroll(function() { 92 var currentScroll = $(this).scrollTop(); 93 var $currentSection; 94 95 $headers.each(function() { 96 var divPosition = $(this).offset().top - 100; 97 if (divPosition - 1 < currentScroll) { 98 $currentSection = $(this); 99 } 100 if ($currentSection && $currentSection.attr('id')) { 101 var id = $currentSection.attr('id'); 102 } 103 104 $('.sidebar-header-2 a').removeClass('active'); 105 id = "'#" + id + "'"; 106 $('.sidebar-header-2 [href=' + id + ']').addClass('active'); 107 }); 108 }); 109 }
87 function setScroll (parent, scroll, horizontal) { 88 if (parent === window) { 89 if (horizontal === true) { 90 window.scrollTo(scroll, window.pageYOffset || window.scrollY || document.body.scrollTop || 0) 91 } 92 else { 93 window.scrollTo(window.pageXOffset || window.scrollX || document.body.scrollLeft || 0, scroll) 94 } 95 } 96 else { 97 parent[horizontal === true ? 'scrollLeft' : 'scrollTop'] = scroll 98 } 99 }
145 function scrollUpdate(){ 146 try{ 147 if(window.topScrollCount > 0 && window.topScrollItem){ 148 var newpos = window.topScrollItem.offset().top; 149 if(newpos-window.topScrollPos > 0){ 150 window.scrollBy(0, newpos-window.topScrollPos); 151 } 152 window.topScrollPos = newpos; 153 window.topScrollCount--; 154 window.topScrollID = window.setTimeout(scrollUpdate, 200); 155 } 156 }catch(error){ 157 window.topScrollCount = 0; 158 window.topScrollItem = null; 159 } 160 }