2

我刚开始使用剑道 ui,并在下面运行一个非常基本的示例。

它目前显示为 ios,但我想一直将其设置为平面 ui 主题。我在演示或文档中看不到任何说明如何执行此操作的内容。

有人可以告诉我如何将默认主题更改为平面设计吗?

<!doctype html>
<html>
<head>

<!-- Kendo UI Mobile CSS -->
<link href="styles/kendo.mobile.all.min.css" rel="stylesheet" />

<!-- jQuery JavaScript -->
<script src="js/jquery.min.js"></script>
<!-- Kendo UI Mobile combined JavaScript -->
<script src="js/kendo.mobile.min.js"></script>
    <title>Kendo UI Examples</title>
</head>
<body>

<!-- Kendo Mobile View -->
<div data-role="view" data-title="test" id="index">
    <!--Kendo Mobile Header -->
    <header data-role="header">
        <!--Kendo Mobile NavBar widget -->
        <div data-role="navbar">
            <span data-role="view-title"></span>
        </div>
    </header>
    <!--Kendo Mobile ListView widget -->
    <ul data-role="listview">
      <li>Item 1</li>
      <li>Item 2</li>
    </ul>
    <!--Kendo Mobile Footer -->
    <footer data-role="footer">
        <!-- Kendo Mobile TabStrip widget -->
        <div data-role="tabstrip">
            <a data-icon="home" href="#index">Home</a>
            <a data-icon="settings" href="#settings">Settings</a>
        </div>
    </footer>
</div>
<script>
// Initialize a new Kendo Mobile Application
var app = new kendo.mobile.Application();
</script>

</body>
</html>
4

2 回答 2

14

您可以在应用程序的声明中覆盖设备/皮肤。

var app = new kendo.mobile.Application($(document.body), { skin: 'flat' });

或者你可以强制每个人都使用看起来像 Windows Phone 的界面

var app = new kendo.mobile.Application($(document.body), { platform: 'wp8' });

请参阅文档... http ://docs.kendoui.c​​om/api/mobile/application#configuration-platform

于 2013-09-04T12:18:45.853 回答
-3

您需要在加载页面上添加所选样式的选择。

<link href="styles/kendo.mobile.all.min.css" rel="stylesheet" />
<link href="styles/kendo.mobile.flat.min.css" rel="stylesheet" />
于 2013-09-04T01:03:42.633 回答