嗨,我有一个基本上是 html 页面的应用程序。我有一个问题,因为 html 页面比可视屏幕长并且页面不会滚动。
我添加了这个 div:
<div id="scrollerId" style="width:320px; height:100px" x-mojo-element="Scroller">
<div >scrolling content</div>
</div>
但它什么也没做。
请有人帮忙解释如何添加一个。或者如果我需要向我的javascript
文件或其他任何内容添加任何内容?
source/helloworld.js
enyo.kind({
name: "HelloWorld",
kind: enyo.VFlexBox,
components: [
{kind: "PageHeader", components: [
{content: "Page Header"}
]},
{flex: 1, kind: "Pane", components: [
{flex: 1, kind: "Scroller", components: [
//Insert your components here
]}
]},
{kind: "Toolbar", components: [
]}
]
});
我是新手,webos dev
所以对我很轻松。