106 lines
3.1 KiB
HTML
106 lines
3.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>07-Element-demo1</title>
|
|
|
|
<style>
|
|
.el-row {
|
|
margin-bottom: 20px;
|
|
}
|
|
.el-col {
|
|
border-radius: 4px;
|
|
}
|
|
.bg-purple-dark {
|
|
background: #99a9bf;
|
|
}
|
|
.bg-purple {
|
|
background: #d3dce6;
|
|
}
|
|
.bg-purple-light {
|
|
background: #e5e9f2;
|
|
}
|
|
.grid-content {
|
|
border-radius: 4px;
|
|
min-height: 36px;
|
|
}
|
|
.row-bg {
|
|
padding: 10px 0;
|
|
background-color: #f9fafc;
|
|
}
|
|
</style>
|
|
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<div id="app">
|
|
|
|
<el-row>
|
|
<el-col :span="24"><div class="grid-content bg-purple-dark"></div></el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="12"><div class="grid-content bg-purple"></div></el-col>
|
|
<el-col :span="12"><div class="grid-content bg-purple-light"></div></el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="8"><div class="grid-content bg-purple"></div></el-col>
|
|
<el-col :span="8"><div class="grid-content bg-purple-light"></div></el-col>
|
|
<el-col :span="8"><div class="grid-content bg-purple"></div></el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="6"><div class="grid-content bg-purple"></div></el-col>
|
|
<el-col :span="6"><div class="grid-content bg-purple-light"></div></el-col>
|
|
<el-col :span="6"><div class="grid-content bg-purple"></div></el-col>
|
|
<el-col :span="6"><div class="grid-content bg-purple-light"></div></el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="4"><div class="grid-content bg-purple"></div></el-col>
|
|
<el-col :span="4"><div class="grid-content bg-purple-light"></div></el-col>
|
|
<el-col :span="4"><div class="grid-content bg-purple"></div></el-col>
|
|
<el-col :span="4"><div class="grid-content bg-purple-light"></div></el-col>
|
|
<el-col :span="4"><div class="grid-content bg-purple"></div></el-col>
|
|
<el-col :span="4"><div class="grid-content bg-purple-light"></div></el-col>
|
|
</el-row>
|
|
|
|
<!-- 添加一行,8个格子, 24/8=3-->
|
|
<el-row>
|
|
<el-col :span="3"><div class="grid-content bg-purple"></div></el-col>
|
|
<el-col :span="3"><div class="grid-content bg-purple-light"></div></el-col>
|
|
<el-col :span="3"><div class="grid-content bg-purple"></div></el-col>
|
|
<el-col :span="3"><div class="grid-content bg-purple-light"></div></el-col>
|
|
<el-col :span="3"><div class="grid-content bg-purple"></div></el-col>
|
|
<el-col :span="3"><div class="grid-content bg-purple-light"></div></el-col>
|
|
<el-col :span="3"><div class="grid-content bg-purple"></div></el-col>
|
|
<el-col :span="3"><div class="grid-content bg-purple-light"></div></el-col>
|
|
</el-row>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script src="js/vue.js"></script>
|
|
<!--索引文件-->
|
|
<script src="element-ui/lib/index.js"></script>
|
|
<!--核心样式文件-->
|
|
<link rel="stylesheet" href="element-ui/lib/theme-chalk/index.css">
|
|
|
|
|
|
<!--创建Vue核心对象-->
|
|
|
|
<script>
|
|
|
|
new Vue({
|
|
el:"#app"
|
|
})
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
</body>
|
|
</html> |