gpt4 book ai didi

html - CSS 背景 gif 图像不循环重复

转载 作者:太空宇宙 更新时间:2023-11-03 20:32:17 28 4
gpt4 key购买 nike

CSS 背景 gif 图像未循环播放。我有以下代码,但它不起作用。两个图像都呈现在另一个图像之上,但 gif 文件没有循环。

.decoration {
display: inline-block;
width: 365px;
height: 650px;
margin-top: -10px;
background: url("https://placeholdit.imgix.net/~text?txtsize=34&txt=365%C3%97650&w=365&h=650") no-repeat center;
background-size: cover;
vertical-align: top;
background-position: center center;
}
image-holder {
width: 269px;
height: 477px;
margin: 77px 48px;
background: url("http://bbsimg.ngfiles.com/1/24309000/ngbbs509571c17019a.gif") repeat center;
background-position: center center;
background-size: cover;
}
<div class="decoration">
<div class="image-holder">
</div>
</div>

最佳答案

.decoration {
display: inline-block;
width: 365px;
height: 650px;
margin-top: -10px;
background: url("https://placeholdit.imgix.net/~text?txtsize=34&txt=365%C3%97650&w=365&h=650") no-repeat center;
background-size: cover;
vertical-align: top;
background-position: center center;
}

.image-holder {
width: 269px;
height: 477px;
margin: 77px 48px;
background: url("http://bbsimg.ngfiles.com/1/24309000/ngbbs509571c17019a.gif") repeat center;
background-position: center center;

}


}
<div class="decoration">
<div class="image-holder">
</div>
</div>

我在这里使用虚拟 gif。尝试用您的网址替换 gif 网址。

关于html - CSS 背景 gif 图像不循环重复,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39324349/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com