Code Monkey home page Code Monkey logo

tilz's Introduction

Tilz

Tilz is a simple, lightweight, javascript tool for creating tiled layouts. In other words, a way to fix vertical spacing when using CSS's property float.
Demo Website @ http://mehdi-dali.github.io/Tilz/

Getting started

To use Tilz, all you need is to wrap your elements inside a container element, then declare a new object as shown in this example:

HTML

alt tag

<div class="container">
  <div class="item"></div>
  <div class="item"></div>
  <div class="item"></div>
  ...
</div>
<script src="./path/to/tilz.js"></script>
Javascript

alt tag

var myTiles = new Tilz("container","item",gutter,time);
myTiles.start();

Where gutter (positive integer) is the spacing between tiles in pixels, and time (positive integer) is the duration of the tiles animation in milliseconds when the layout is refreshed (resizing the window or manually calling the organize() method).

Tips & tricks

Items with sizes in percent (%)

The best way to implement Tilz in this case is to use gutter-less layout and items as wrappers for content elements.

<div class="container">
  <div class="item">
    <div class="content"></div>
  </div>
  <div class="item">
    <div class="content"></div>
  </div>
  <div class="item">
    <div class="content"></div>
  </div>
  ...
</div>
var myTiles = new Tilz("container","item",0,time);
myTiles.start();

tilz's People

Contributors

mehdi-dali avatar

Stargazers

Roman avatar Youssef Had avatar

Watchers

James Cloos avatar  avatar

tilz's Issues

issue #1

Problem when items have width in percent size, computed size values are incorrect.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.