element/examples/pages/resource.vue

113 lines
2.9 KiB
Vue
Raw Normal View History

2016-08-23 11:15:15 +00:00
<style scoped>
.page-resource {
2016-08-25 07:54:45 +00:00
padding-top: 55px;
2016-08-23 11:15:15 +00:00
}
.cards {
margin: 35px auto 110px;
.container {
@utils-clearfix;
padding: 0;
margin: 0 -11px;
width: auto;
}
li {
width: 33.33333%;
padding: 0 11px;
box-sizing: border-box;
float: left;
list-style: none;
}
}
2016-08-25 07:54:45 +00:00
h2 {
font-size: 28px;
margin: 0;
}
p {
font-size: 14px;
color: #5e6d82;
}
2016-08-23 11:15:15 +00:00
.card {
height: 394px;
width: 100%;
background:#ffffff;
border:1px solid #eaeefb;
border-radius:5px;
box-sizing: border-box;
text-align: center;
position: relative;
transition: bottom .3s;
bottom: 0;
img {
margin: 75px auto 35px;
2016-09-07 04:17:16 +00:00
height: 87px;
2016-08-23 11:15:15 +00:00
}
h3 {
margin: 0 0 10px;
font-size: 18px;
color: #1f2f3d;
font-weight: normal;
2016-09-07 04:17:16 +00:00
height: 22px;
2016-08-23 11:15:15 +00:00
}
p {
font-size: 14px;
color: #99a9bf;
padding: 0 30px;
margin: 0;
}
a {
height: 42px;
width: 190px;
display: inline-block;
line-height: @height;
font-size: 14px;
background-color: #20a0ff;
color: #fff;
text-align: center;
border: 0;
padding: 0;
cursor: pointer;
border-radius: 2px;
transition: all .3s;
text-decoration: none;
margin-top: 20px;
}
}
</style>
2016-08-22 09:49:20 +00:00
<template>
2016-08-25 07:54:45 +00:00
<div class="page-container page-resource">
2016-08-23 11:15:15 +00:00
<h2>资源</h2>
<p>这里提供 Element 相关设计资源和设计工具的下载更多设计资源正在整理和完善中</p>
<div class="cards">
<ul class="container">
<li>
<div class="card">
<img src="~examples/assets/images/Axure-Components.svg" alt="">
<h3>Axure Components</h3>
<p>通过在 Axure 中导入 Element 组件库可以在交互设计阶段方便地调用常用的组件</p>
<a href="https://github.com/ElementUI/Resources/raw/master/Element_Components_v1.1.0.rplib">下载</a>
2016-08-23 11:15:15 +00:00
</div>
</li>
<li>
<div class="card">
<img src="~examples/assets/images/Sketch-Template.svg" alt="">
<h3>Sketch Template</h3>
<p> Element Template 快速调用常用组件在提升设计效率的同时保证统一的视觉风格</p>
<a href="https://github.com/ElementUI/Resources/raw/master/Element%20UI%20Kit_v1.3.sketch">下载</a>
2016-08-23 11:15:15 +00:00
</div>
</li>
<li>
<div class="card">
<img src="~examples/assets/images/Module.svg" alt="">
<h3>组件交互文档</h3>
<p>进一步查看 Element 交互文档从一个较为微观的角度详细地了解各个组件的交互细节</p>
<a href="https://github.com/ElementUI/Resources/raw/master/Element%20Components%20Documentation.zip">下载</a>
2016-08-23 11:15:15 +00:00
</div>
</li>
</ul>
</div>
</div>
</template>