zoukankan      html  css  js  c++  java
  • Animated App Boot Example : Fastest animation at app boot time

    This iPhone app shows how to create an animation that is displayed when the app starts. The animation shows a spinning laser that becomes a company logo. This example is implemented in two ways. The first implementation uses a compressed animation file attached as a resource. The second implementation demonstrates APNG animation file format support. The APNG implementation uses an 8 bit palette, which saves a lot of space (1/2 meg) but takes a bit longer to decode during the very first boot. After the first boot, the decoded video is saved and any future boot will begin to animate in less than a second. In comparison, a boot animation implemented with the built-in H.264 support takes about 4 seconds to load each time the app is started (results on 3G iPhone). You could just use a H.264 on startup, but it would be fairly slow on every boot. This example shows the fastest possible boot animation start time, except that the very first boot takes a few seconds to decode the file.

    BootAnimationApp200.zip (3800 Kb) 

  • 相关阅读:
    ps太卡
    vba 数字变为excel对应列的字母
    爬去网页离线数据
    vba 得到数字
    Sql Server generate table structure document
    Git
    windows凭据管理器
    修改注册表
    Software List
    1009 说反话
  • 原文地址:https://www.cnblogs.com/killiancheung/p/4674185.html
Copyright © 2011-2022 走看看