10大需要注意的web app问题

  1. Don't generate the UI on the server 不要在服务器上处理ui
  2. Limit network access 尽量减少网络操作
  3. Don't wait for the data to display the UI 不要因为等待数据而延迟显示ui
  4. Use hardware acceleration 使用硬件加速
  5. Avoid click event's 300ms delay 不要使用click事件
  6. Optimize images 优化图片
  7. Limit shadows and gradients  尽量少用引用和变型
  8. Do you need that framework? 考虑你用的框架是不是真的需要
  9. Minimize browser reflows 减少页面重绘
  10. Test  测试

猜你喜欢

转载自blog.csdn.net/qiushi888/article/details/49816015