JT3DScrollView is a UIScrollView with custom effects during the scroll.
With CocoaPods, add this line to your Podfile.
pod 'JT3DScrollView', '~> 2.0'
You can use it like a classic UIScrollView, the isPagingEnabled
is set to true
by default and clipsToBounds
is set to false
.
import UIKit
import JT3DScrollView
class ViewController: UIViewController {
@IBOutlet weak var scrollView: JT3DScrollView?
override func viewDidLoad() {
super.viewDidLoad()
scrollView?.effect = .cards
}
}
You can disable the effect and act like a classic UIScrollView
by setting effect
to .none
.
Effects are just preset for some properties used for the animations, you can adjust all effects with:
angleRatio
rotationX
rotationY
rotationZ
translateX
translateY
All this properties are relative to the position X of the subview.
- iOS 8 or higher
- Swift 3.0
JT3DScrollView is released under the MIT license. See the LICENSE file for more info.