correction && add form && add slide && add masonry && css

This commit is contained in:
2020-06-07 17:47:49 +02:00
153 changed files with 16750 additions and 162 deletions

30
node_modules/flickity/sandbox/requirejs/index.html generated vendored Normal file
View File

@@ -0,0 +1,30 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width" />
<title>RequireJS</title>
<link rel="stylesheet" href="../../css/flickity.css" />
<link rel="stylesheet" href="../sandbox.css" />
<script data-main="main" src="https://unpkg.com/requirejs@2/require.js"></script>
</head>
<body>
<h1>single</h1>
<div id="gallery" class="container">
<div class="cell" n1></div>
<div class="cell" n2></div>
<div class="cell" n3></div>
<div class="cell" n4></div>
<div class="cell" n5></div>
<div class="cell" n6></div>
<div class="cell" n7></div>
</div>
</body>
</html>

22
node_modules/flickity/sandbox/requirejs/main.js generated vendored Normal file
View File

@@ -0,0 +1,22 @@
/*jshint strict: false */
/*global requirejs: false*/
/*
// bower components
requirejs.config({
baseUrl: '../../bower_components'
});
requirejs( [ '../js/index' ], function( Flickity ) {
new Flickity('#gallery');
});
// */
// /*
// pkgd
requirejs( [
'../../dist/flickity.pkgd.js'
], function( Flickity ) {
new Flickity('#gallery');
});
// */