开源软件名称(OpenSource Name):webix-hub/material-design-skin开源软件地址(OpenSource Url):https://github.com/webix-hub/material-design-skin开源编程语言(OpenSource Language):CSS 100.0%开源软件介绍(OpenSource Introduction):Material Design skin for Webix UILive demo - http://webix.com/demos/material/admin-app/index.html#!/app/forms Skin will work with Webix 2.3 - 5.4. From Webix 6.0 you can use a built-in Material skin, which is the default styling of the library. How to use
<html>
<head>
<script type="codebase/webix.js"></script>
<link rel="stylesheet" type="text/css" href="codebase/skins/material.css">
</head>
<body>
webix.ready(function(){
//some webix related UI here
});
</body>
</html> Shared CSS classesExample - http://webix.com/demos/material/admin-app/index.html#!/app/typography Text and Background
webix.ui({
rows:[{
template:"Some text",
css:"text_info"
},{
template:"Some background",
css:"bg_danger"
}) Buttons
webix.ui({
view:"button",
css:"button_success button_raised"
}) Icons
webix.ui({
view:"icon",
icon:"users",
css:"solid_icon"
}); Panels
webix.ui({
rows:[
{ template:"A" },
{ template:"B", css:"bg_panel"},
{ template:"C" }
]
}) Material layoutSkin adds one more type of layout. webix.ui({
type:"material",
rows:[
{ template:"A" },
{ template:"B" },
{ template:"C" }
]
}) This type of layout shows all content elements as material panels. LicenseCode is released under the MIT License: Copyright (c) 2015 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论