gpt4 book ai didi

webos - 如何将图像放入 webOS 应用程序中

转载 作者:行者123 更新时间:2023-12-02 08:34:49 36 4
gpt4 key购买 nike

我想在webos应用程序中添加图像并为其添加点击事件。我也无法将背景图像放入应用程序中。我将此代码放在 Basic.css 文件中设置背景图像

body.palm-default {
background: url('../images/comman_bg.png') top left no-repeat;
z-index: -1;
position: fixed;
top: 0px;
left: 0px;
width: 320px;
height: 480px;
}
/* "splash" below is the scene name. Replace it with your scene name to get it to have a custom background */
#mojo-scene-splash-scene-scroller {
background: url('../images/splash-screenshot-default.png') top left no-repeat;
}

如果有人有设置图像和图像点击事件的代码,请回复。

最佳答案

您是否确保包含了index.html 中的Basic.css 文件?您是否确保图像的路径相对于 CSS 文件的位置是正确的?

要为图像设置点击处理程序,您需要执行如下操作:

this.onTapHandler = this.onTap.bind(this);
Mojo.Event.listen($("myImg"), Mojo.Event.tap, this.onTapHandler);

稍后您会想停止收听

Mojo.Event.stopListening($("myImg"), Mojo.Event.tap, this.onTapHandler);

关于webos - 如何将图像放入 webOS 应用程序中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6871845/

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