All Projects → glua → Load Seed

glua / Load Seed

⌛️ Garry's Mod loading screen skeleton to help developers quickly get started in building their own.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Load Seed

Bot toast
A really easy to use flutter toast library
Stars: ✭ 551 (+1677.42%)
Mutual labels:  loading
Loaderbutton
LoaderButton is a very interesting animation loading button.
Stars: ✭ 19 (-38.71%)
Mutual labels:  loading
Angular Loading Feedback
Angular directive to indicate loads in app
Stars: ✭ 8 (-74.19%)
Mutual labels:  loading
Loadinglayout
简单实用的页面多状态布局(content,loading,empty,error)
Stars: ✭ 712 (+2196.77%)
Mutual labels:  loading
Statefullayout
Android layout to show template for loading, empty, error etc. states
Stars: ✭ 813 (+2522.58%)
Mutual labels:  loading
Vue Loadable
⏳ Improve your loading state control with pretty simple methods and helpers.
Stars: ✭ 23 (-25.81%)
Mutual labels:  loading
React Skeletor
Skeleton loading for React
Stars: ✭ 551 (+1677.42%)
Mutual labels:  loading
Statusprovider
Protocol to handle initial Loadings, Empty Views and Error Handling in a ViewController & views
Stars: ✭ 879 (+2735.48%)
Mutual labels:  loading
Ngx Progressbar
Angular progress bar ☄
Stars: ✭ 813 (+2522.58%)
Mutual labels:  loading
Create Content Loader
✏️ Tool to create your own react-content-loader easily.
Stars: ✭ 937 (+2922.58%)
Mutual labels:  loading
Vue Content Loading
Vue component to easily build (or use presets) SVG loading cards Facebook like.
Stars: ✭ 729 (+2251.61%)
Mutual labels:  loading
Vue Loading Overlay
Vue.js component for full screen loading indicator 🌀
Stars: ✭ 784 (+2429.03%)
Mutual labels:  loading
React Circle
Renders a svg circle + progress, it just works 💘
Stars: ✭ 925 (+2883.87%)
Mutual labels:  loading
Stateview
✨ StateView is an invisible, zero-sized View that can be used to lazily inflate loadingView/emptyView/retryView at runtime.
Stars: ✭ 573 (+1748.39%)
Mutual labels:  loading
Awloader
AWLoader is a UI Component that allows you to integrate loader that fits your needs within your app.
Stars: ✭ 11 (-64.52%)
Mutual labels:  loading
Zloading
[Android] 这是一个自定义Loading View库。暂停更新
Stars: ✭ 552 (+1680.65%)
Mutual labels:  loading
Windless
Windless makes it easy to implement invisible layout loading view.
Stars: ✭ 919 (+2864.52%)
Mutual labels:  loading
Dialogutil
common used dialog with material style ( in support v7),ios style,get top activity automatically, invoke everywhere (any thread , any window)
Stars: ✭ 948 (+2958.06%)
Mutual labels:  loading
Android Circledialog
仿IOS圆角对话框、进度条、列表框、输入框,ad广告框,支持横竖屏切换
Stars: ✭ 880 (+2738.71%)
Mutual labels:  loading
Similarloadingview
A stylish loading view for Android
Stars: ✭ 26 (-16.13%)
Mutual labels:  loading

Loading Screen Seed

This project is an application skeleton for building a Garry's Mod loading screen. You can use it to quickly get started building your design.

The seed comes preconfigured with modern frontend tools to make developing a loading screen faster and easier.

Preview Image

Getting Started

To get started you can simply clone the load-seed repository and install the dependencies:

Prerequisites

You need git to clone the load-seed repository. You can get git from http://git-scm.com/

The project also uses a number of node.js tools to initialize and build load-seed. You must have node.js and its package manager (npm) installed. You can get them from http://nodejs.org/

Clone load-seed

Clone the load-seed repository using git:

git clone https://github.com/glua/load-seed
cd load-seed

If you just want to start a new project without the load-seed commit history then you can do:

git clone --depth=1 https://github.com/glua/load-seed.git <your-project-name>

The depth=1 tells git to only pull down one commit worth of historical data.

Install Dependencies

This project requires a few tools before you can begin developing your loading screen with it. After installing node.js, you can simply run the following commands to install all dependencies:

npm install
npm install -g gulp

After running these commands, you should find the a node_modules folder within your project.

Run the Application

The project is preconfigured with a simple development web server. To start this server, enter the following:

gulp serve

Now browse to the loading screen at http://localhost:9000/.

Hosting

When you're ready to host your loading screen, enter the following:

gulp build

The final project files will be built into a dist folder within your project. You'll need to upload these files to a web server.

Directory Layout

app/                    --> all of the source files for the loading screen
  fonts/                --> any fonts to include
  images/               --> logo image, backgrounds, etc.
  scripts/              --> JavaScript files
    main.js             --> loading screen code
    demo.js             --> test data used for emulating connecting to a server in the browser
  styles/               --> loading screen styles
    main.scss           --> default stylesheet
  index.html            --> loading screen layout file
  robots.txt            --> disallows web robots from indexing loading screen files
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].