UICollectionView 每個(gè)item添加動(dòng)畫

  • (void)collectionView:(UICollectionView *)collectionView willDisplayCell:(UICollectionViewCell *)cell forItemAtIndexPath:(NSIndexPath *)indexPath

{

CATransform3D rotation;//3D旋轉(zhuǎn)

// rotation = CATransform3DMakeTranslation(0 ,50 ,20);

rotation = CATransform3DMakeRotation( M_PI_4 , 0.0, 0.7, 0.4);

//逆時(shí)針旋轉(zhuǎn)

rotation = CATransform3DScale(rotation, 0.8, 0.8, 1);

rotation.m34 = 1.0/ 1000;

cell.layer.shadowColor = [[UIColor redColor]CGColor];

cell.layer.shadowOffset = CGSizeMake(10, 10);

cell.alpha = 0;

cell.layer.transform = rotation;

[UIView beginAnimations:@"rotation" context:NULL];

//旋轉(zhuǎn)時(shí)間

[UIView setAnimationDuration:0.6];

cell.layer.transform = CATransform3DIdentity;

cell.alpha = 1;

cell.layer.shadowOffset = CGSizeMake(0, 0);

[UIView commitAnimations];

}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

  • 在iOS中隨處都可以看到絢麗的動(dòng)畫效果,實(shí)現(xiàn)這些動(dòng)畫的過(guò)程并不復(fù)雜,今天將帶大家一窺iOS動(dòng)畫全貌。在這里你可以看...
    F麥子閱讀 5,261評(píng)論 5 13
  • 在iOS中隨處都可以看到絢麗的動(dòng)畫效果,實(shí)現(xiàn)這些動(dòng)畫的過(guò)程并不復(fù)雜,今天將帶大家一窺ios動(dòng)畫全貌。在這里你可以看...
    每天刷兩次牙閱讀 8,688評(píng)論 6 30
  • 轉(zhuǎn)載:http://www.itdecent.cn/p/32fcadd12108 每個(gè)UIView有一個(gè)伙伴稱為l...
    F麥子閱讀 6,567評(píng)論 0 13
  • 3D仿射變換動(dòng)畫類型同二維2D仿射變換動(dòng)畫一樣有旋轉(zhuǎn)平移縮放 CATransform3DMakeScale(0.5...
    衹氏閱讀 955評(píng)論 0 4
  • >復(fù)雜的組織都是專門化的 >Catharine R. Stimpson 到目前為止,我們已經(jīng)探討過(guò)`CALayer...
    夜空下最亮的亮點(diǎn)閱讀 1,211評(píng)論 0 2

友情鏈接更多精彩內(nèi)容