Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saitjr/STLoadingGroup
loading views
https://github.com/saitjr/STLoadingGroup
loading-animations
Last synced: 3 months ago
JSON representation
loading views
- Host: GitHub
- URL: https://github.com/saitjr/STLoadingGroup
- Owner: saitjr
- License: mit
- Created: 2016-01-03T09:16:03.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-03-31T20:42:40.000Z (over 4 years ago)
- Last Synced: 2024-04-24T14:16:05.255Z (6 months ago)
- Topics: loading-animations
- Language: Swift
- Size: 3.45 MB
- Stars: 437
- Watchers: 18
- Forks: 40
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ios - STLoadingGroup - loading views. (UI / Activity Indicator)
- awesome-ios-star - STLoadingGroup - loading views. (UI / Activity Indicator)
README
# STLoadingGroup
A Group of Loading Animations.
[![STLoadingGroup](./resources/video_first_frame.png)](https://vimeo.com/183843221)
## ScreenShot
![](./resources/loading.gif)
## Usage
```swift
let loadingGroup = let loadingGroup = STLoadingGroup(side: side, style: style)
loadingGroup.show(inView: view)
loadingGroup.startLoading()
// stop: loadnigGroup.stopLoading()
```#### Custom
If you want to add your own loading:
1\.Comfirm `STLoadingable` and `STLoadingConfigable` protocol and implement required functions (there is a `isLoading` property left)
```swift
protocol STLoadingable {
var isLoading: Bool { get }
func startLoading()
func stopLoading()
}protocol STLoadingConfig {
var animationDuration: TimeInterval { get }
var lineWidth: CGFloat { get }
var loadingTintColor: UIColor { get }
}
``` 2\.Append your loading style to `STLoadingStyle` in `STLoadingGroup.swift` file
```swift
enum STLoadingStyle: String {
case submit = "submit"
case glasses = "glasses"
case walk = "walk"
case arch = "arch"
case bouncyPreloader = "bouncyPreloader"
case zhihu = "zhihu"
case triangle = "triangle"
case pacMan = "pac man"
}
``` 3\.Add initializer for your loading: `case .yourStyle:` in `STLoadingGroup`
```swift
class STLoadingGroup {
fileprivate let loadingView: STLoadingable
init(side: CGFloat, style: STLoadingStyle) {
let bounds = CGRect(origin: .zero, size: CGSize(width: side, height: side))
switch style {
case .submit:
loadingView = STSubmitLoading(frame: bounds)
case .glasses:
loadingView = STGlassesLoading(frame: bounds)
case .walk:
loadingView = STWalkLoading(frame: bounds)
case .arch:
loadingView = STArchLoading(frame: bounds)
case .bouncyPreloader:
loadingView = STBouncyPreloaderLoading(frame: bounds)
case .zhihu:
loadingView = STZhiHuLoading(frame: bounds)
case .triangle:
loadingView = STTriangleLoading(frame: bounds)
case .pacMan:
loadingView = STPacManLoading(frame: bounds)
// insert your code here
}
}
}
```## Thanks
#### .glasses
**Designed by** : [bingbing](https://dribbble.com/bingbing). **Dribbble link** : [click me !](https://dribbble.com/shots/2124921-togic-loading)
#### .walk
**Designed by** : [sandeep virk](https://dribbble.com/sandeepvirk87). **Dribbble link** : [click me !](https://dribbble.com/shots/2341109-Loading)
#### .arch
**Designed by** : [John LaPrime](https://dribbble.com/johnlaprime). **Dribbble link** : [click me !](https://dribbble.com/shots/2392622-Loading-Animation)
#### .bouncyPreloader
**Designed by** : [Joash Berkeley](https://dribbble.com/JoashBerkeley). **Dribbble link** : [click me !](https://dribbble.com/shots/2391053-Bouncy-Preloader)
#### .submit
Loading animation in submit button.
#### .zhiHu
**Designed by** : ZhiHu daily.
#### .triangle
I found on web.
#### .pacMan
**Designed by** : Dave Whyte
## MIT LICENSE
```
The MIT License (MIT)
Copyright (c) 2016 saitjr
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```