FSPagerView icon indicating copy to clipboard operation
FSPagerView copied to clipboard

FSPagerView is an elegant Screen Slide Library. It is extremely helpful for making Banner View、Product Show、Welcome/Guide Pages、Screen/ViewController Sliders.

Results 123 FSPagerView issues
Sort by recently updated
recently updated
newest added

Hi, first thanks for the great tool, I have been trying to change contentInsets for items with custom size with no success. So far for 1 full screen item there...

Hi WenchaoD, I have a issue. I want to set FSPagerView's position is left. This is alway center. Excuse me for using transle.google

enhancement

How to set item inset/space between the item transform type ferrisWheel

I removed shadow layer for good usability!

取消高亮,就不能点击,如何取消高亮

enhancement

``` internal var numberOfItems: Int = 0 internal var numberOfSections: Int = 0 ``` Coz it's `internal`.

```swift pageControl.setImage(UIImage(named: "pagecontrol_current"), for: .selected) //27*6 pageControl.setImage(UIImage(named: "pagecontrol_normal"), for: .normal) //6*6 pageControl.itemSpacing = 5 pageControl.numberOfPages = 5 pageControl.currentPage = 1 ``` layout result ![IMG_4378.jpg](https://i.loli.net/2019/06/14/5d0329a327e2f32284.jpg) ```swift pageControl.setPath(UIBezierPath(ovalIn: CGRect(x: 0, y: 0,...

When isInfinite is set to false and there's only 1 item. The image get pixellated.

On occasion, i've had to make FSPagerCells that have shadow borders that bleed outside of the cell (and thus outside the underlying UICollectionView). This Pull Request adds the ability to...

原因 源码: let amplitude = CGFloat(self.numberOfPages/2) * diameter + spacing*CGFloat((self.numberOfPages-1)/2) 应该改为 let amplitude = CGFloat(self.numberOfPages)/2.0 * diameter + spacing*CGFloat((self.numberOfPages-1))/2.0; 应该提前类型转换,避免误差