Package Exports
- css-spinner
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (css-spinner) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
css spinner
Loading spinner that's just css. Include the css file and make a div.progess element.
install
$ npm install css-spinnerexample
Sass
@import "node_modules/css-spinner/_spinner.scss";<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="/spinner.css">
</head>
<body>
<p>small</p>
<div class="small progress">
<div>Loading...</div>
</div>
<p>med</p>
<div class="progress">
<div>Loading...</div>
</div>
<p>large</p>
<div class="large progress">
<div>Loading...</div>
</div>
</body>
</html>