我正在寻找像https://squareup.com/这样的轮播。我希望图像具有固定的比例、最小宽度并处理高达 1400 像素宽度的屏幕。我尝试使用 CSS 中断的所有内容。
CSS:
.carousel .item {
height: 800px;
}
.carousel img {
position: absolute;
top: 0;
left: 0;
min-width: 1400px;
height: 100%;
}
我可以使用响应式插件或图像滑块吗?或者我完全不知道的 CSS 技巧。