User experience
User experience
以用户为中心,
——通过简单的操作快速完成美好的任务
简单
聚焦,我在干什么?我接下来要干什么?
- 删除、隐藏,合并、分组
- 使用背景色,而非边框来划分区域
- 碎片化,电话不是现在就需要
- 突出主题,使按钮、链接易于点击
- 低侵扰,避免弹框,使用tip
快速
为用户思考,the most?
我们应当替大多数用户着想
- 设置默认值、推荐
- 这10000个商品中,谁才是我要找的
- 上下文关联
- 遵守约定,遵守用户习惯
- 你觉得按钮应该是什么样子?
- 批处理,next one not repeat
- 直接处理下一条,不用返回列表,重复操作
- 做了再说,failure a little
- 失败总是少数,不用总是让用户确认操作,或者等待,失败了可以回滚,亲
响应,不要等太久
- 显示进度(还要多久?)、状态(到什么位置了?)、反馈(Ta在做什么?)
- 先干点别的,看两张图片,先
- 异步响应,提交操作,然后继续处理别的事务
美好
心理引导
用于文案设计/活动推广
- 区分产品适用对象(just for you)
- 本产品不适合18岁以下儿童使用
- 客户评价(follow is safe)
- 已经有10008人购买这个商品
- 失去比获得更刺激(you will lost)
- facebook 注销将会失去朋友
- 产地效应(关联印象)
- 恒大冰泉 来自深层火山的矿泉水
- 天猫预售,阿拉斯加深海鲟鱼
- 饥饿营销(any more)
- 限定人数、倒计时
- 仅剩2个名额...,最先进入的前10位用户,将会获得...
- 天猫预售,离商品销售结束还有2小时
推荐书籍,《启示录》,《简约至上》
User experience的更多相关文章
- Pramp - mock interview experience
Pramp - mock interview experience February 23, 2016 Read the article today from hackerRank blog on ...
- Enhanced Mitigation Experience Toolkit 软件安全性强化工具
Enhanced Mitigation Experience Toolkit软件是微软为应对互联网中层出不穷的漏洞而推出的一款安全工具,可以在Window Update未获取到补丁前,对系统进行保护. ...
- The Basics of 3D Printing in 2015 - from someone with 16 WHOLE HOURS' experience
全文转载自 Scott Hanselman的博文. I bought a 3D printer on Friday, specifically a Printrbot Simple Metal fro ...
- 论文阅读之:PRIORITIZED EXPERIENCE REPLAY
PRIORITIZED EXPERIENCE REPLAY ICLR 2016 经验回放使得 online reinforcement learning agent 能够记住并且回放过去的经验.在先前 ...
- 微软职位内部推荐-Senior SDE for Windows App Experience
微软近期Open的职位: Job posting title: Senior Software Development Engineer Location: China, Beijing Divisi ...
- knowlege experience
The konwledge is you need learning some basic knowledge. The experience is you can use konwledge ma ...
- Customize the SharePoint 2013 search experience with a Content Enrichment web service
Did you ever wish you had more control over how your content is indexed and presented as search resu ...
- 180China丨the Agency for Brand Engagement and Experience
180China丨the Agency for Brand Engagement and Experience Welcome to 180. Welcome to Creativity. Thank ...
- HDU 5176 The Experience of Love 带权并查集
The Experience of Love Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/O ...
随机推荐
- Hibernate逍遥游记-第15章处理并发问题-003乐观锁
1. 2. drop database if exists SAMPLEDB; create database SAMPLEDB; use SAMPLEDB; drop table if exists ...
- CentOS 7.0安装Nvidia驱动
entOS 7.0 Nvidia显卡安装步骤: 1 在英伟达官网下载相应驱动 搜索出相应的驱动后,不要直接点,而是右健,Save Link as... 否则,会出现下载半天没动静的情况. 存放的路径上 ...
- Android Andbase应用开发框架
[运行说明]运行AndbaseDemo需要将文件中的Andbase库Add进demo中.1.andbase中包含了大量的开发常用手段.如网络下载,多线程与线程池的管理,数据库ORM,图片缓存管理,图片 ...
- FileObverse文件观察者的Debug报告
FileObverse文件观察者的Debug报告 2014年9月18日 9:03
- PHP Redis 集群封装类
<?php /** * Redis 操作,支持 Master/Slave 的负载集群 * * @author V哥 */ class RedisCluster{ // 是否 ...
- BZOJ 2005 能量采集(容斥原理)
题目链接:http://61.187.179.132/JudgeOnline/problem.php?id=2005 题意:给定n和m,求 思路:本题主要是解决对于给定的t,有多少对(i,j)满足x= ...
- window注册表
打开注册表: 可以用快捷键 win + r ,然后输入 Regedit 回车,会打开注册表. 注册表添加一个键值对到 操作如下: 1.先创建一个 .reg 后缀的文件. 2.文件内容如下: Wind ...
- Git使用简介
git创建分支并直接切换到分支:git checkout -b name git提交分支到远程服务器: git push origin name/git push origin name:name ...
- hdu 1575 Tr A (矩阵快速幂入门题)
题目 先上一个链接:十个利用矩阵乘法解决的经典题目 这个题目和第二个类似 由于矩阵乘法具有结合律,因此A^4 = A * A * A * A = (A*A) * (A*A) = A^2 * A^2.我 ...
- poj 1185 炮兵阵地(三维状态压缩dP)
题目:http://poj.org/problem?id=1185 思路: d[i][j][k]表示第i行的状态为第k个状态,第i-1行的状态为第j个状态的时候 的炮的数量. 1表示放大炮, 地形状态 ...