Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试为设计师调整 jQuery 的 Coda Slider以占据整个页面(100% 宽度/100% 高度),但是一旦我将.scroll类的高度更改为 100%,整个事情就会消失。有谁知道我能做些什么来修复它?
.scroll
尝试
$(document).ready(function(){ var docWidth = $(document).width(); var docHeight = $(document).height(); $(".scroll").css({ "height":docHeight, "width":docWidth }); });
这些值可能需要以像素而不是 % 为单位。