npm install drivewaydriveway
===
pure CSS masonry layout aid
!img
driveway is an explorative project for developing pure CSS masonry layouts. It is developed using stylus.
* easy to use
* interactive
* responsive
* config driven
* customisable
* extendable
`` Some content.html`
folder for driveway.blog.css and driveway.blog.min.css. Alternatively, use bower to pull in the repo.browser support
| Chrome | Firefox | Safari | Opera | Edge | IE |
| ------------- |:-------------:| -----:| -----|-----|-----|----|
| :smile: | :smile: | :smile: | :smile: | :smile: | :sweat:* |
__*__ _
driveway will play nice in IE10+_driveway relies on Flexbox and multi-column layout properties. For further details on browser support for these check out caniuse.com.usage
In order to start using driveway, drop the driveway{.min}.css file into your page and start building your markup.driveway simply provides the basic means to layout your content in a masonry style and provides no aesthetic styling. This should ideally be covered by your own theme files. There are some notes about theming below.If you would like a similar theme to that used in the demo, check out the
theme.styl file in the sources.$3
driveway is built up of different blocks;*
container
* panels
* clusters
* segments
* flip panels(optional)
* focus curtain(optional)Below is an explanation of these blocks. It may be easier to inspect the demo page or source in the repo to get a further understanding of how these piece together.
#### layout container
We start our layout with a container;
`html
`##### class reference
*
dw - layout container#### layout panels
Panels are the simplest building blocks of our layout. The content for a panel lives inside the
dw-panel__content element.`html
Panel content.
`
##### modifiers
* Focus {dw-panel--focus} - the focus modifier will focus a panel on hover. Ust it by adding the dw-panel--focus class to the panel. This means that a _focus curtain element_ must exist within the layout container as the __very last__ element.
`html
`* Pulse
{dw-panel--pulse} - the pulse modifier will slightly enlarge a panel on hover. Use it by adding the dw-panel--pulse class to the panel.##### class reference
*
dw-panel - panel
* dw-panel__content - panel content
* dw-panel--focus - panel focus modifier
* dw-panel--pulse - panel pulse modifier#### clusters and segments
Clusters and segments are most likely the trickiest part of creating a layout with
driveway. Clusters are used to breakup the layout flow a little more and enhance the masonry effect that's desired.A cluster is the top level element.
`html
`It's still a panel so it needs the
dw-panel class in addition to the dw-cluster class. The last class is used to declare the direction of the cluster flow. dw-cluster--vertical declares that are cluster should flow vertically using columns whilst dw-cluster--horizontal would declare a horizontal flow for our cluster. This is __important__. Not adding the modifier class will result in that cluster not collapsing when desired.A cluster is made up of segments. This can be _tricky_.
`html
`The first children of our cluster need to be either
rows or columns depending on the directional flow of our cluster. Our content will then sit within these.For example;
A vertically flowed cluster with two columns. The row/column modifier is important to define the internal flow of the segment. Here we use
dw-cluster__segment--col as we want columns. But we may use dw-cluster__segment--row if we desire a row.`html
`Once we have created our cluster children containers, we simply need to fill them with content. We fill them with panel blocks. These panel blocks must have the class
dw-cluster__segment in addition to their panel class.`html
Panel content.
`
We may want to enforce that our segments take up a certain amount of real estate inside their clusters. There are two segment modifiers to ensure that a segment takes up at least 25% or 50% of the real estate in the relative direction. These are applied with dw-cluster__segment--quart and dw-cluster__segment--half respectively.
Putting it all together we get something like;
`html
I am in the first column.
I am in the second column.
So am I.
`
##### class reference
* dw-cluster - cluster
* dw-cluster--vertical - vertical flow cluster modifier
* dw-cluster--horizontal - horizontal flow cluster modifier
* dw-cluster__segment - segment
* dw-cluster__segment--col - segment column
* dw-cluster__segment--row - segment row
* dw-cluster__segment--quart - segment taking up quarter of the real estate available
* dw-cluster__segment--half - segment taking up half of the real estate available#### focus curtain
The focus curtain is an optional element. It __is__ required though if you wish to use the
focus modifier on any of your panels. This is because driveway makes use of CSS sibling combinator syntax in order to give off the desired effect. To use, ensure that an element with the class dw__focus-curtain is placed as the very last element of the layout container.`html
`#### flip panels
Flip panels are layout panels that spin round on hover/tap(mobile). Due to the required markup needed for the effect, their structure is a little different to other panels.
`html
You can flip me round
Yeah that's right
`A flip panel is still a panel so it still uses the
dw-panel class. It also uses the dw-flip class and an additional class to define the height of the panel.That last piece is __important__. In order for the flip to render and behave correctly, a defined height must be set so that each side of the panel matches up. There are size modifiers for small, medium and large. These are set in the config and are used with
dw-flip--sm, dw-flip--md and dw-flip--lg classes respectively.Our flip panel content(
dw-flip__content) has to consist of two panels(dw-flip__panel). One for the front of the panel(dw-flip__panel--front), and one for the back(dw-flip__panel--back).##### class reference
*
dw-flip - flip panel
* dw-flip--sm - small flip panel
* dw-flip--md - medium flip panel
* dw-flip--lg - large flip panel
* dw-flip__content - flip panel content
* dw-flip__panel - flip panel child panel
* dw-flip__panel--front - flip panel front
* dw-flip__panel--back - flip panel back#### full class glossary
*
dw - layout container
* dw-panel - panel
* dw-panel__content - panel content
* dw-panel--focus - panel focus modifier
* dw-panel--pulse - panel pulse modifier
* dw-cluster - cluster
* dw-cluster--vertical - vertical flow cluster modifier
* dw-cluster--horizontal - horizontal flow cluster modifier
* dw-cluster__segment - segment
* dw-cluster__segment--col - segment column
* dw-cluster__segment--row - segment row
* dw-cluster__segment--quart - segment taking up quarter of the real estate available
* dw-cluster__segment--half - segment taking up half of the real estate available
* dw__focus-curtain - focus curtain
* dw-flip - flip panel
* dw-flip--sm - small flip panel
* dw-flip--md - medium flip panel
* dw-flip--lg - large flip panel
* dw-flip__content - flip panel content
* dw-flip__panel - flip panel child panel
* dw-flip__panel--front - flip panel front
* dw-flip__panel--back - flip panel back
$3
driveway includes minimal theming. It provides structural styling and minimal aesthetics for things like panel padding. For the demos, utility classes are used to add color to text, panels etc.Some areas of theming are likely to be common though such as how to display images as panels.
#### images
Displaying images in a masonry style is quite a common desire. It seems likely that when doing this, there will be no need to define an
img element within our panel content as the img is the panel content.`html

`However, dropping this in the page with no
img specific theming will break things a little depending on your image sizes. This isn't major, but for my personal theming I added the following rules to my theme.`css
img {
max-height: 300px;
}
img.dw-panel__content,
img.dw-flip__panel {
padding: 0;
}
img.dw-flip__panel {
max-height: 100%;
}`
This stops images going wild!development
$3
driveway is developed using gulp, stylus and jade.__NOTE:__ In order to run the source, both __[node]__ and __[gulp]__ are required.
1. Clone the repo.
`shell
git clone https://github.com/jh3y/driveway.git
`2. Navigate into the repo and install the dependencies.
`shell
cd driveway
npm install
`3. Run
gulp to take care of preprocessing and running a local static server instance.`shell
gulp
`$3
There are some pages available for developing against that have been used to explore methods when developing driveway;*
index.html - demo page for driveway which is manually built.
* sandbox.html - sandbox page for developing new features.
* dev.html - randomly generated layout in order to test different combinations.
* timeline.html - page for exploring timeline ordered content layouts.$3
Development of driveway is config driven in the sense that a set of variables defined in a json file are passed to both jade and stylus source are compiled. This makes it easier to change properties for driveway by only having to alter them in one place.#### roll your own!
As
driveway is config driven, you can make alterations to it's configuration such as classnames, responsive breakpoints and some default aesthetics by making updates to this it's config file and compiling your own versions.In order to do this;
* clone and set up the repo.
* modify
driveway-config.json.
* run gulp compile --dist --stat. This will output new files in the dist folder whilst giving you the new filesize.
timeline ordering issue
Date ordered content is something that deserves it's own mention as this seems to be the hardest issue to tackle with implementing a pure CSS masonry layout.Without server side rendering or some JavaScript intervention this isn't easy/possible to maintain with just CSS. I have put together a simple implementation that uses JavaScript that can be accessed from this issue.
Date ordered content can be done but it is when we try and make this content responsive that we hit a stumbling block as the order is lost between viewports.
I have experimented with different approaches(_even trying to play with
flexbox ordering_) but I haven't come across a nice way of doing it.The only straight forward solution seems to be duplicating the markup per viewport size breakpoint.
$3
Let's imagine we have some content that is ordered by date.At a larger viewport we wish to display this in four columns. This requires dropping an item of content into each column one a time from left to right, newest to oldest(1-10) until we run out of items.
| Column 1 | Column 2 | Column 3 | Column 4 |
|----------|----------|----------|----------|
| 1 | 2 | 3 | 4 |
| 5 | 6 | 7 | 8 |
| 9 | 10 | EMPTY | EMPTY |
This looks fine but when we drop down to a lower viewport would be greeted with one column and the items in the wrong order;
| Column |
|--------|
| 1 |
| 5 |
| 9 |
| 2 |
| 6 |
| etc. |
One way to get round this is render two sets of content on the page and wrap them accordingly based on the viewport.
For our
mobile version of the markup, we just need one column with our content in the correct order. For this, we can use a container that will be hidden with CSS at larger viewports and then a collection of panel blocks.`html
`For our
desktop version we need a vertically flowed cluster with the amount of columns that are desired. Nested clusters will work fine here.`html
`We can then control what is seen with some simple CSS theming like;
`css
@media (min-width: 768px) {
.dw--mobile {
display: none;
}
}
.dw--desktop {
display: none;
}
@media (min-width: 768px) {
.dw--desktop {
display: block;
}
}``@jh3y 2017