我正在一个网站上工作,有一种情况是我使用二十二十年代js制作的“前后”动画。

它可以在除一页以外的所有地方正常工作,而后一页(右侧)似乎不适合“容器”。图像应具有浅色边框,但仅显示在顶部。使用“边界:1像素固体浅灰色”具有相同的结果。

链接到问题页面:

http://www.nordglueck.com/printness/html/Referenz/raumplus_Faltposterbroschuere_Illustration_nach_Bild.html

最佳答案

快速解决!将right: 0;添加到.twentytwenty-container img文件中的twentytwenty.css中,并在您的style.css文件中,从2px类中的宽度和高度中获取.bild-1

您的最终输出将如下所示

在您的二十二十.css中

.twentytwenty-container img
    max-width: 100%;
    position: absolute;
    top: 0;
    right: 0px;
    display: block;


在你的style.css中

.bild-1
    width: 388px;
    height: 348px;
    display: inline-block;
    float: right;

07-28 08:05