javascript icon indicating copy to clipboard operation
javascript copied to clipboard

包含javascript的基础语法,面向对象的实现和设计模式实现

Results 4 javascript issues
Sort by recently updated
recently updated
newest added

Fly Animation #fly { width: 50px; height: 50px; background-color: #3498db; position: absolute; } // Get the fly element const fly = document.getElementById('fly'); // Set initial position of the fly let...

add wchaowu add or update

声明: 页面引用了jquery. 要获取滚动的距离 1: function qq(){console.log($(window).scrollTop())} $(window).scroll(qq()); 2: $(window).scroll(function (){console.log($(window).scrollTop())}; 1 里面获取的距离只显示一次 滚动完 刷新后才能更新, 2 里面的距离一直跟着滚动改变 why!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!