grid programme

This commit is contained in:
2020-07-16 17:24:02 +02:00
parent ee476d177c
commit 08b0754135
134 changed files with 15445 additions and 25 deletions
+30
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
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');
});
// */