CocoaPods trunk is moving to be read-only. Read more on the blog, there are 14 months to go.
| TestsTested | ✗ |
| LangLanguage | SwiftSwift |
| License | MIT |
| ReleasedLast Release | Jun 2017 |
| SwiftSwift Version | 3.0 |
| SPMSupports SPM | ✓ |
Maintained by Jonathan Vukovich Tribouharet.
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:
angleRatiorotationXrotationYrotationZtranslateXtranslateYAll this properties are relative to the position X of the subview.
JT3DScrollView is released under the MIT license. See the LICENSE file for more info.