mirror of
https://github.com/chinchang/web-maker.git
synced 2025-07-13 10:06:23 +02:00
133 lines
3.0 KiB
JavaScript
133 lines
3.0 KiB
JavaScript
window.jsLibs = [
|
|
{
|
|
url: 'https://code.jquery.com/jquery-3.2.1.min.js',
|
|
label: 'jQuery',
|
|
type: 'js'
|
|
},
|
|
{
|
|
url: 'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js',
|
|
label: 'Bootstrap 3',
|
|
type: 'js'
|
|
},
|
|
{
|
|
url: 'https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js',
|
|
label: 'Bootstrap 4β',
|
|
type: 'js'
|
|
},
|
|
{
|
|
url: 'https://cdnjs.cloudflare.com/ajax/libs/foundation/6.4.3/js/foundation.min.js',
|
|
label: 'Foundation',
|
|
type: 'js'
|
|
},
|
|
{
|
|
url: 'https://semantic-ui.com/dist/semantic.min.js',
|
|
label: 'Semantic UI',
|
|
type: 'js'
|
|
},
|
|
{
|
|
url: 'https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js',
|
|
label: 'Angular',
|
|
type: 'js'
|
|
},
|
|
{
|
|
url: 'https://cdnjs.cloudflare.com/ajax/libs/react/16.0.0/cjs/react.production.min.js',
|
|
label: 'React',
|
|
type: 'js'
|
|
},
|
|
{
|
|
url: 'https://cdnjs.cloudflare.com/ajax/libs/react/15.6.1/react-dom.min.js',
|
|
label: 'React DOM',
|
|
type: 'js'
|
|
},
|
|
{
|
|
url: 'https://unpkg.com/vue@2.5.0/dist/vue.min.js',
|
|
label: 'Vue.js',
|
|
type: 'js'
|
|
},
|
|
{
|
|
url: 'https://cdnjs.cloudflare.com/ajax/libs/three.js/85/three.min.js',
|
|
label: 'Three.js',
|
|
type: 'js'
|
|
},
|
|
{
|
|
url: 'https://cdnjs.cloudflare.com/ajax/libs/d3/4.10.2/d3.min.js',
|
|
label: 'D3',
|
|
type: 'js'
|
|
},
|
|
{
|
|
url: 'https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js',
|
|
label: 'Underscore',
|
|
type: 'js'
|
|
},
|
|
{
|
|
url: 'https://cdnjs.cloudflare.com/ajax/libs/gsap/1.20.2/TweenMax.min.js',
|
|
label: 'Greensock TweenMax',
|
|
type: 'js'
|
|
},
|
|
{
|
|
url: 'https://cdnjs.cloudflare.com/ajax/libs/uikit/2.27.4/js/uikit.min.js',
|
|
label: 'UIkit 2',
|
|
type: 'js'
|
|
},
|
|
{
|
|
url:
|
|
'https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.31/js/uikit.min.js',
|
|
label: 'UIkit 3',
|
|
type: 'js'
|
|
}
|
|
];
|
|
window.cssLibs = [
|
|
{
|
|
url: 'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css',
|
|
label: 'Bootstrap 3',
|
|
type: 'css'
|
|
},
|
|
{
|
|
url: 'https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css',
|
|
label: 'Bootstrap 4β',
|
|
type: 'css'
|
|
},
|
|
{
|
|
url: 'https://cdnjs.cloudflare.com/ajax/libs/foundation/6.4.3/css/foundation.min.css',
|
|
label: 'Foundation',
|
|
type: 'css'
|
|
},
|
|
{
|
|
url: 'https://semantic-ui.com/dist/semantic.min.css',
|
|
label: 'Semantic UI',
|
|
type: 'css'
|
|
},
|
|
{
|
|
url: 'https://cdnjs.cloudflare.com/ajax/libs/bulma/0.6.0/css/bulma.min.css',
|
|
label: 'Bulma',
|
|
type: 'css'
|
|
},
|
|
|
|
{
|
|
url: 'https://cdnjs.cloudflare.com/ajax/libs/hint.css/2.5.0/hint.min.css',
|
|
label: 'Hint.css',
|
|
type: 'css'
|
|
},
|
|
{
|
|
url: 'https://cdnjs.cloudflare.com/ajax/libs/uikit/2.27.4/css/uikit.min.css',
|
|
label: 'UIkit 2',
|
|
type: 'css'
|
|
},
|
|
{
|
|
url:
|
|
'https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.31/css/uikit.min.css',
|
|
label: 'UIkit 3',
|
|
type: 'css'
|
|
},
|
|
{
|
|
url: 'https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css',
|
|
label: 'Animate.css',
|
|
type: 'css'
|
|
},
|
|
{
|
|
url: 'https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css',
|
|
label: 'FontAwesome',
|
|
type: 'css'
|
|
}
|
|
];
|