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.
我有一张我想适合浏览器窗口的图像。宽度和高度不应大于窗口的宽度和高度。
我制作了一个适用于宽度但不适用于高度的函数。
查看我的 JS BIN并从右到左上下拖动浏览器窗口,比例不对
您的 jQuery 代码$("#book li img")将不起作用,因为li您的ul元素内部没有。
$("#book li img")
li
ul
我希望这就是你要找的
工作小提琴
尝试
CSS:
img { max-width: 100%; max-height: 100%; }
如果放置图像的容器小于图像,这将使图像变小。
UL-Element 需要 LI-Child-elements。