0

我第一次使用 Sencha Touch,但是在设计图像(即中心)和文本(即制作一定的尺寸/颜色)时遇到了困难。

有人可以告诉我在哪里添加样式标签。

下面的示例项目:

 // This is the home page, just some simple html
            {
                title: 'Home',
                iconCls: 'home',
                cls: 'home',
                scrollable: true,
                style: 'text-align:centre',
                html: [
                    '<img height=260 src="http://upload.wikimedia.org/wikipedia/commons/4/4a/Logo_2013_Google.png"/>',
                    '<h1>Welcome to the Demo HTML5 App</h1>',
                    "<p>Built with Sencha Touch</p>"
                ].join("")
            }
4

2 回答 2

1

这里的想法是不使用 STYLE 标记...您正在为组件分配一个“cls”,它只是一个 CSS 类。使用 CSS 构建您的样式:

.home img {}
.home h1 {}
.home p {}
于 2013-09-24T13:17:39.143 回答
0

我同意 arthurkay 但如果你想使用内联样式你应该改变......

style: 'text-align:centre'

... 至 ...

style: 'text-align:center'
于 2013-09-24T15:04:08.677 回答