作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我从右向左滚动图像
我想为来自右侧的每个单元格制作动画(ala Google+)
该动画可以基于 Alpha 或帧位置
如何实现?
最佳答案
这可能不是您想要的动画,但这是我在 UICollectionViewCell 子类中所做的。当框架缩小到适当的大小时,这将在单元格中淡出。我从 collectionView: cellForItemAtIndexPath:
中调用 setPhoto
方法。
@implementation HistoryCollectionViewCell
- (void)setPhoto:(Photo*)photo {
if(_photo != photo) {
_photo = photo;
}
// Set up the animations here
self.photoQueue.alpha = 0.0f;
self.cellContainerView.alpha = 0.0f;
CGRect currentFrame = self.cellContainerView.frame;
CGFloat width = currentFrame.size.width + 20;
CGFloat height = currentFrame.size.height + 20;
CGFloat originX = currentFrame.origin.x - 10;
CGFloat originY = currentFrame.origin.y - 10;
CGRect newFrame = CGRectMake(originX, originY, width, height);
self.cellContainerView.frame = newFrame;
dispatch_queue_t photoQueue = dispatch_queue_create("com.jeremyfox.SnapTo.photoQueue", NULL);
dispatch_async(photoQueue, ^{
__block UIImage* image = nil;
if (_photo) {
image = [Photo getImageAtPath:_photo.thumbnail];
}
dispatch_async(dispatch_get_main_queue(), ^{
if (image) {
self.imageView.image = image;
// Perform the animations here
[UIView animateWithDuration:0.3f animations:^{
self.cellContainerView.alpha = 1.0f;
self.cellContainerView.frame = currentFrame;
}];
}
});
});
}
关于ios - UICollectionView:1 行水平滚动(从右到左),带有来自右侧的新单元格的自定义动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16678158/
目前我正在使用 [self presentModalViewController :newVC animated:YES] 。我想从左/右/顶部/底部呈现带有推送效果的 newViewcontroll
我正在尝试实现“带有上一个和下一个的部分幻灯片”。这些部分的标记如下: Section 1 Section 2 Section 3 Prev Next 除具有 acti
我的问题与此处提出的问题几乎相同:question 不同的是,我想从右边切换第 2 位和第 4 位数字,而不是像另一个问题中那样从左边切换。所以在我的例子中最右边的数字是 1。示例:283926.67
我是一名优秀的程序员,十分优秀!