gpt4 book ai didi

html - 内部有滚动图像的 iphone 剪影

转载 作者:太空宇宙 更新时间:2023-11-04 12:53:54 26 4
gpt4 key购买 nike

我正在尝试制作一个带有滚动图像的 iphone 覆盖层来展示移动网站设计,但图像没有滚动,上面覆盖的 iphone 是我做错了什么吗?我该如何解决?

演示:http://jsfiddle.net/jonathanl5660/Lao36z20/


<div>
<img src="https://dl.dropboxusercontent.com/u/9833562/iphone.png" width="370px" height="800px" style="position: absolute; ">
</div>
<div style="width:300px;height:700px;overflow:scroll;margin:30px; position: relitive;">

<img src="https://dl.dropboxusercontent.com/u/9833562/mtest.png" width="98%" height="700px" alt="" style="margin-top:150px;margin-left:10px;" /><br />
<br />

</div>

最佳答案

您可以像这样构建您的 html:

<div class="iphone">
<div class="container">
<img src="https://dl.dropboxusercontent.com/u/9833562/mtest.png" alt=""/>
</div>
</div>

然后用 CSS 调整外观:

.iphone {
width:370px;
height:800px;
background:url('https://dl.dropboxusercontent.com/u/9833562/iphone.png') no-repeat center;
background-size:100%;
}
.container {
position:relative;
top:152px;
width:293px;
margin:auto;
max-height:496px;
overflow:auto;
}
.container img {
width:100%;
}

检查这个 demo Fiddle

关于html - 内部有滚动图像的 iphone 剪影,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25974767/

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