professionalism-credibility
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseProfessionalism & Credibility Animation
专业可信风格动画设计
Create animations that convey competence, seriousness, and business-appropriate polish.
创建能够传达专业能力、严谨感与商业级精致感的动画效果。
Emotional Goal
情感目标
Professionalism means motion that respects users' time and context. Credibility comes from animations that demonstrate technical competence without showing off.
专业感意味着动画要尊重用户的时间与使用场景。可信度来自于能够体现技术专业性但不炫技的动画效果。
Disney Principles for Professionalism
适用于专业风格的迪士尼动画原则
Squash & Stretch
Squash & Stretch(挤压与拉伸)
None to minimal (0-5%). Professional interfaces use rigid, precise motion. Objects maintain exact proportions.
无或极少量(0-5%)。专业界面使用精准、规整的动效。物体保持精确的比例。
Anticipation
Anticipation(预备动作)
Brief and functional (50-100ms). Just enough to prevent surprise. No theatrical preparation—get to the point.
简短且功能性的(50-100ms)。仅需达到避免用户产生突兀感的程度。无需戏剧化的铺垫——直接呈现效果。
Staging
Staging(舞台呈现)
Clear hierarchy and purpose. Business-appropriate layouts. Every element in its proper place with clear function.
清晰的层级与明确的用途。符合商业场景的布局。每个元素都处于恰当位置,功能清晰。
Straight Ahead Action
Straight Ahead Action(逐帧绘制动作)
Avoid entirely. Professional motion is controlled and predictable. No spontaneity or variation.
完全避免。专业动效应具备可控性与可预测性。无自发性或随机性变化。
Follow Through & Overlapping Action
Follow Through & Overlapping Action(跟随动作与重叠动作)
Minimal, controlled settling. Quick stabilization. No bouncing or playfulness—immediate completion.
极少量、可控的收尾效果。快速稳定。无弹跳或俏皮效果——动作立即完成。
Slow In & Slow Out
Slow In & Slow Out(慢入慢出)
Smooth, professional curves. Standard easing that feels polished but not decorative. for efficiency.
ease-out流畅、专业的曲线。使用标准缓动效果,达到精致感但不过度装饰。使用以提升效率。
ease-outArc
Arc(弧线运动)
Minimal curves, direct paths preferred. Professional motion is efficient. Straight lines communicate directness.
极少量曲线,优先使用直线路径。专业动效应高效。直线传达直接、明确的感受。
Secondary Action
Secondary Action(次要动作)
Functional only. Loading states, progress indicators. No decorative animation—everything serves a purpose.
仅保留功能性动作。如加载状态、进度指示器。无装饰性动画——所有动效都应服务于功能。
Timing
Timing(时长控制)
Efficient and consistent (150-250ms). Quick enough to feel responsive, slow enough to track. No wasted time.
高效且一致(150-250ms)。足够快以体现响应性,同时足够慢以便用户追踪。不浪费用户时间。
Exaggeration
Exaggeration(夸张)
None. Realistic, proportional movements. Professional means grounded and believable.
完全避免。使用真实、比例协调的动作。专业感意味着务实且可信。
Solid Drawing
Solid Drawing(扎实的造型)
Precise, consistent geometry. Perfect alignment. Technical accuracy in every detail.
精准、一致的几何形态。完美的对齐。每个细节都具备技术准确性。
Appeal
Appeal(吸引力)
Clean, systematic design. Grid-based layouts. Neutral colors. Function-first aesthetics.
简洁、系统化的设计。基于网格的布局。中性色调。功能优先的美学风格。
Timing Recommendations
时长建议
| Element | Duration | Easing |
|---|---|---|
| Transitions | 150-250ms | |
| Feedback | 100-150ms | |
| Modals | 200-250ms | |
| Data updates | 150-200ms | |
| 元素 | 时长 | 缓动效果 |
|---|---|---|
| 过渡效果 | 150-250ms | |
| 反馈效果 | 100-150ms | |
| 模态框 | 200-250ms | |
| 数据更新 | 150-200ms | |
CSS Easing
CSS 缓动效果
css
--pro-standard: cubic-bezier(0.4, 0, 0.2, 1);
--pro-enter: cubic-bezier(0.0, 0, 0.2, 1);
--pro-exit: cubic-bezier(0.4, 0, 1, 1);css
--pro-standard: cubic-bezier(0.4, 0, 0.2, 1);
--pro-enter: cubic-bezier(0.0, 0, 0.2, 1);
--pro-exit: cubic-bezier(0.4, 0, 1, 1);Professional Patterns
专业风格动效模板
css
@keyframes pro-fade-in {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes pro-slide-up {
from {
opacity: 0;
transform: translateY(8px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.professional-element {
animation: pro-slide-up 200ms ease-out forwards;
}css
@keyframes pro-fade-in {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes pro-slide-up {
from {
opacity: 0;
transform: translateY(8px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.professional-element {
animation: pro-slide-up 200ms ease-out forwards;
}Credibility Guidelines
可信度准则
- Consistent timing builds trust
- Smooth motion signals competence
- No animation is better than bad animation
- Match platform conventions
- Respect prefers-reduced-motion
- Test across devices for consistency
- 一致的动效时长能够建立信任
- 流畅的动效传递专业能力
- 没有动画效果好过劣质动画
- 匹配平台的设计规范
- 尊重prefers-reduced-motion(减少动效)设置
- 跨设备测试以确保一致性
When to Use
适用场景
- B2B software
- Financial dashboards
- Legal and compliance tools
- Healthcare administration
- Government services
- Enterprise applications
- Professional portfolios
- Corporate websites
- B2B软件
- 财务仪表盘
- 法律与合规工具
- 医疗管理系统
- 政府服务平台
- 企业级应用
- 专业作品集
- 企业官网