mirror of
https://github.com/wahyd4/ant-design.git
synced 2026-08-26 05:06:30 +10:00
4.3 KiB
4.3 KiB
文献素材
- order: 1
- category: 1
在进行模式、组件和语言的整理中,《交互设计精髓》、《Web 界面设计》、《界面设计模式》、《写给大家看的设计书》、《设计心理学》、《Web表单设计:点石成金的艺术》等书籍给了我们很多的启示,帮助我们节约了大量时间,并成功克服了很多困难。如果想了解更多设计相关的内容,建议你去阅读这些非常棒的书籍。
About Face 4
作者: Alan.cooper
出版社: 电子工业出版社
Web界面设计
作者: Bill Scott / Theresa Neil
出版社: 电子工业出版社
界面设计模式
作者: Tidwell,J.
出版社: 电子工业出版社
写给大家看的设计书
作者: Robin Williams
出版社: 人民邮电出版社
设计心理学 1
作者: 唐纳德•A•诺曼
出版社: 中信出版社
设计心理学 3
作者: 唐纳德•A•诺曼
出版社: 中信出版社
Web表单设计:点石成金的艺术
作者: Luke Wroblewski
出版社: 清华大学出版社
<style>
.resource-card {
width: 350px;
height: 130px;
border: 1px solid #e9e9e9;
border-radius: 12px;
font-size: 12px;
color: #777;
display: inline-block;
margin: 20px 40px 10px 0;
vertical-align: middle;
transition: all 0.3s ease;
}
.resource-card:hover {
box-shadow: 0 1px 4px rgba(64,64,64,.2);
}
.resource-card:hover .resource-card-title {
color: #2db7f5;
}
.resource-card.disabled {
opacity: 0.45;
pointer-events: none;
}
.resource-card img {
display: inline-block;
vertical-align: middle;
width: 64px;
margin: 0 20px;
}
.resource-card-content {
display: inline-block;
vertical-align: middle;
height: 130px;
padding-top: 24px;
}
.resource-card-title {
display: block;
font-size: 16px;
color: #666;
}
.resource-card-description {
display: block;
color: #999;
}
</style>