mirror of
https://github.com/TangentFoxy/memex.git
synced 2024-11-22 04:54:23 +00:00
Setup Mansonry cascading grid layout library.
This commit is contained in:
parent
2fd8ab3727
commit
676626b7eb
9
asset/masonry.pkgd.min.js
vendored
Normal file
9
asset/masonry.pkgd.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -3,63 +3,36 @@ html {
|
||||
font-family:'Monaco', 'Andale Mono', 'Deja Vu Sans Mono', 'Consolas', monospace;
|
||||
font-size:1em;
|
||||
box-sizing: border-box;
|
||||
padding: 0em;
|
||||
margin:0;
|
||||
}
|
||||
|
||||
*,
|
||||
*:before,
|
||||
*:after {
|
||||
box-sizing: inherit;
|
||||
body {
|
||||
padding: 0em;
|
||||
margin:0;
|
||||
}
|
||||
|
||||
/* Masonry */
|
||||
#masonry {
|
||||
max-width: 1550px;
|
||||
min-width: 300px;
|
||||
column-gap: 1em;
|
||||
margin-left: 0.75em;
|
||||
margin-right: 0.75em;
|
||||
margin-top: 1em;
|
||||
page-break-inside: avoid;
|
||||
break-inside: avoid;
|
||||
* { box-sizing: border-box; }
|
||||
|
||||
.grid {
|
||||
/* center */
|
||||
margin: 0 auto;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
#item {
|
||||
background: #fff;
|
||||
margin-bottom: 1em;
|
||||
padding: 1em;
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
width: 100% !important;
|
||||
/* clearfix */
|
||||
.grid:after {
|
||||
content: '';
|
||||
display: block;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 1550px) {
|
||||
#masonry {
|
||||
column-count: 5;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1549px) and (min-width: 1250px) {
|
||||
#masonry {
|
||||
column-count: 4;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1249px) and (min-width: 950px) {
|
||||
#masonry {
|
||||
column-count: 3;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 949px) and (min-width: 650px) {
|
||||
#masonry {
|
||||
column-count: 2;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 649px) and (min-width: 0px) {
|
||||
#masonry {
|
||||
column-count: 1;
|
||||
}
|
||||
.grid-item {
|
||||
width: 350px;
|
||||
float: left;
|
||||
background: #D26;
|
||||
margin-bottom: 20px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
|
||||
@ -76,7 +49,7 @@ a#urlseen {
|
||||
}
|
||||
|
||||
/* ENTRY */
|
||||
#entry, #entryImportant {
|
||||
.grid-item, #entryImportant {
|
||||
color:#000;
|
||||
background:#999;
|
||||
padding:0.5em;
|
||||
|
@ -5,7 +5,9 @@
|
||||
<link rel="stylesheet" href="asset/style.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<script type="text/javascript" src="content/memex.ndtl"></script>
|
||||
<script src="asset/masonry.pkgd.min.js"></script>
|
||||
|
||||
<script src="content/memex.ndtl"></script>
|
||||
<script src="logic/indental.js"></script>
|
||||
<script src="logic/main.js"></script>
|
||||
|
||||
|
@ -11,9 +11,19 @@ function Main()
|
||||
let view = ``;
|
||||
let html = document.body;
|
||||
|
||||
view += `<div id="masonry">${displayEntries(DB)}</div>`;
|
||||
view += `<div class="grid">`;
|
||||
view += `${displayEntries(DB)}`;
|
||||
view += `</div>`;
|
||||
|
||||
html.innerHTML = view;
|
||||
|
||||
var msnry = new Masonry( '.grid', {
|
||||
itemSelector: '.grid-item',
|
||||
columnWidth: 350,
|
||||
gutter: 20,
|
||||
fitWidth: true,
|
||||
transitionDuration: 0,
|
||||
});
|
||||
}
|
||||
|
||||
function displayEntries(db)
|
||||
@ -28,7 +38,7 @@ function displayEntries(db)
|
||||
value = db[keys[i]];
|
||||
|
||||
// ENTRY
|
||||
var idEntry = "item";
|
||||
var idEntry = "grid-item";
|
||||
// if (typeof value.REVI !== 'undefined')
|
||||
// {
|
||||
// if (value.REVI == "true")
|
||||
@ -37,7 +47,7 @@ function displayEntries(db)
|
||||
// }
|
||||
// }
|
||||
|
||||
entries += `<div id="${idEntry}">`;
|
||||
entries += `<div class="${idEntry}">`;
|
||||
entries += `${keys[i].toProperCase()}`;
|
||||
|
||||
// LINK
|
||||
|
Loading…
Reference in New Issue
Block a user