IOS 雪花飘落效果详解手机开发

        UIImageView *peach2 = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"flower2"]];//声明一个UIImageView对象,用来添加图片   
        peach2.alpha = 0.8;//设置该view的alpha为0.5,半透明的   
        int xx = round(random()%2000);//随机得到该图片的x坐标   
        int yx = round(random()%2000);//这个是该图片移动的最后坐标x轴的   
        int sx = random()%50+10;//这个是定义雪花图片的大小   
        int spx = random()%5;//这个是速度   
        peach2.frame = CGRectMake(-xx, -10, sx, sx);//雪花开始的大小和位置   
        [view_bottom addSubview:peach2];//添加该view   
        [UIView animateWithDuration:10*spx   
                         animations:^{   
                             peach2.frame = CGRectMake(yx, self.view.frame.size.height, sx, sx);//设定该雪花最后的消失坐标   
                         } completion:^(BOOL finished) {   
                             [peach2 removeFromSuperview];   
                         }];  

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/5214.html

(0)
上一篇 2021年7月16日
下一篇 2021年7月16日

相关推荐

发表回复

登录后才能评论