飄雪花動畫,飄雪花

來源:互聯網
上載者:User

飄雪花動畫,飄雪花

該飄雪動畫實現思路:

1.雪花用的圖片。

2.下雪的動作是用的view層實現的,用view實現一個下落的動作。

3.應用演算法實現隨機時間,然後建立相應的雪花,實現下降。

 

部分代碼:

- (void)ontime{

    UIImageView * view;

    view = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"xuehua.jpg"]];

    view.alpha = 0.5;

    int x = round(random() % 320); 

    int y = round(random() % 320); 

    int s = round(random() % 15) + 10; 

    int sp = 1 / round(random() % 100) + 1; 

    view.frame = CGRectMake(x, y - 250, s, s);  

    [self.view addSubview:view];

    [UIView beginAnimations:nil context:nil];

    [UIView setAnimationCurve:UIViewAnimationCurveEaseOut];

    [UIView setAnimationDuration:10 * sp]; 

    view.frame = CGRectMake(x, 500, s, s); 

    [UIView setAnimationDelegate:self];

    [UIView commitAnimations];

}

代碼地址:https://github.com/ChangYulong/SnowDemo                                                                                                                                                        

 

 

 

 

    

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.