在WebView中间显示2张重叠的图片

发布于 2024-12-25 08:44:40 字数 376 浏览 0 评论 0原文

我希望我的 webView 显示 2 张重叠的图片,放置在页面中间;好吧,我尝试了这个:

<div align="center">
    <img src="http://img.youtube.com/vi/n8h7YJNGyAY/default.jpg" style="z-index: 0; position: absolute;" />
    <img src="file:///android_asset/yt_play.png" style="z-index: 1; position: absolute" />
</div>

尽管图片显示重叠,但它们不会放置在中间......我该如何解决这个问题? 谢谢

I'd like my webView to show 2 overlapped pictures, placed in the middle of the page; well I tried this:

<div align="center">
    <img src="http://img.youtube.com/vi/n8h7YJNGyAY/default.jpg" style="z-index: 0; position: absolute;" />
    <img src="file:///android_asset/yt_play.png" style="z-index: 1; position: absolute" />
</div>

and despite the pictures are shown overlapped they won't be placed centrally...how can I fix this?
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

朕就是辣么酷 2025-01-01 08:44:40

查看网站。一个例子是:

<!-- language: java --> 
<div style="position:relative; height:430px">
    <div style="position:absolute;z-index:1">
        <img src="http://www.xul.fr/css/images/cats.jpg">
    </div>
    <div style="position:absolute;top:150px;left:200px; width:600px; height:430px; z-index:2;font-size:200%;">
        <img src="http://www.xul.fr/en/css/images/here.gif" width="160" height="100">
    </div> 
</div>

Check out this site. An example is:

<!-- language: java --> 
<div style="position:relative; height:430px">
    <div style="position:absolute;z-index:1">
        <img src="http://www.xul.fr/css/images/cats.jpg">
    </div>
    <div style="position:absolute;top:150px;left:200px; width:600px; height:430px; z-index:2;font-size:200%;">
        <img src="http://www.xul.fr/en/css/images/here.gif" width="160" height="100">
    </div> 
</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文