centered-masonry.html 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Centered Masonry &middot; Isotope </title>
  6. <!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
  7. <link rel="stylesheet" href="../css/style.css" />
  8. <!-- scripts at bottom of page -->
  9. </head>
  10. <body class="custom-layout-modes ">
  11. <nav id="site-nav">
  12. <h1><a href="../index.html">Isotope</a></h1>
  13. <h2>Docs</h2>
  14. <ul>
  15. <li><a href="../docs/introduction.html">Introduction</a>
  16. <li><a href="../docs/options.html">Options</a>
  17. <li><a href="../docs/methods.html">Methods</a>
  18. <li><a href="../docs/layout-modes.html">Layout modes</a>
  19. <li><a href="../docs/filtering.html">Filtering</a>
  20. <li><a href="../docs/sorting.html">Sorting</a>
  21. <li><a href="../docs/animating.html">Animating</a>
  22. <li><a href="../docs/adding-items.html">Adding items</a>
  23. <li><a href="../docs/extending-isotope.html">Extending Isotope</a>
  24. <li><a href="../docs/hash-history-jquery-bbq.html">Hash history with jQuery BBQ</a>
  25. <li><a href="../docs/help.html">Help</a>
  26. <li><a href="../docs/license.html">License</a>
  27. </ul>
  28. <h2>Demos</h2>
  29. <ul>
  30. <li><a href="../demos/basic.html">Basic</a>
  31. <li><a href="../demos/elements-complete.html">Elements Complete</a>
  32. <li><a href="../demos/elements-partial.html">Elements Partial</a>
  33. <li><a href="../demos/layout-modes.html">Layout modes</a>
  34. <li><a href="../demos/filtering.html">Filtering</a>
  35. <li><a href="../demos/sorting.html">Sorting</a>
  36. <li><a href="../demos/relayout.html">reLayout</a>
  37. <li><a href="../demos/adding-items.html">Adding items</a>
  38. <li><a href="../demos/infinite-scroll.html">Infinite Scroll</a>
  39. <li><a href="../demos/images.html">Images</a>
  40. <li><a href="../demos/combination-filters.html">Combination filters</a>
  41. <li><a href="../demos/hash-history.html">Hash history</a>
  42. <li><a href="../demos/fluid-responsive.html">Fluid / responsive</a>
  43. </ul>
  44. <h2>Custom layout modes</h2>
  45. <ul>
  46. <li class="current"><a href="#content">Centered Masonry</a></li>
  47. <li><a href="../custom-layout-modes/category-rows.html">Category rows</a>
  48. <li><a href="../custom-layout-modes/masonry-corner-stamp.html">Masonry corner stamp</a>
  49. <li><a href="../custom-layout-modes/masonry-gutters.html">Masonry gutters</a>
  50. <li><a href="../custom-layout-modes/spine-align.html">Spine align</a>
  51. </ul>
  52. <h2><a href="../tests/index.html">Tests</a></h2>
  53. </nav> <!-- #site-nav -->
  54. <section id="content">
  55. <h1>Centered Masonry</h1>
  56. <style>
  57. #container {
  58. margin: 0 auto 20px;
  59. }
  60. </style>
  61. <section id="copy">
  62. <p><a href="../docs/layout-modes.html#modified_layout_modes">Modified masonry layout mode</a> for centered container.</p>
  63. </section>
  64. <section id="options" class="clearfix">
  65. <h3>Filters</h3>
  66. <ul id="filters" class="option-set clearfix" data-option-key="filter">
  67. <li><a href="#filter" data-option-value="*" class="selected">show all</a></li>
  68. <li><a href="#filter" data-option-value=".metal">metal</a></li>
  69. <li><a href="#filter" data-option-value=".transition">transition</a></li>
  70. <li><a href="#filter" data-option-value=".post-transition">post-transition</a></li>
  71. <li><a href="#filter" data-option-value=".nonmetal">nonmetal</a></li>
  72. <li><a href="#filter" data-option-value=".inner-transition">inner-transition</a></li>
  73. <li><a href="#filter" data-option-value=".alkali, .alkaline-earth">alkali and alkaline-earth</a></li>
  74. <li><a href="#filter" data-option-value=":not(.transition)">not transition</a></li>
  75. <li><a href="#filter" data-option-value=".metal:not(.transition)">metal but not transition</a></li>
  76. </ul>
  77. <h3>Sort</h3>
  78. <ul id="sort-by" class="option-set clearfix" data-option-key="sortBy">
  79. <li><a href="#sortBy=original-order" data-option-value="original-order" class="selected" data>original-order</a></li>
  80. <li><a href="#sortBy=name" data-option-value="name">name</a></li>
  81. <li><a href="#sortBy=symbol" data-option-value="symbol">symbol</a></li>
  82. <li><a href="#sortBy=number" data-option-value="number">number</a></li>
  83. <li><a href="#sortBy=weight" data-option-value="weight">weight</a></li>
  84. <li><a href="#sortBy=category" data-option-value="category">category</a></li>
  85. <li><a href="#sortBy=random" data-option-value="random">random</a></li>
  86. </ul>
  87. <h3>Sort direction</h3>
  88. <ul id="sort-direction" class="option-set clearfix" data-option-key="sortAscending">
  89. <li><a href="#sortAscending=true" data-option-value="true" class="selected">sort ascending</a></li>
  90. <li><a href="#sortAscending=false" data-option-value="false">sort descending</a></li>
  91. </ul>
  92. <h3>Etc</h3>
  93. <ul id="etc" class="clearfix">
  94. <li id="toggle-sizes"><a href="#toggle-sizes">Toggle variable sizes</a></li>
  95. <li id="insert"><a href="#insert">Insert new elements</a></li>
  96. <li id="append"><a href='#append'>Append new elements</a></li>
  97. <li id="shuffle"><a href='#shuffle'>Shuffle</a></li>
  98. </ul>
  99. </section> <!-- #options -->
  100. <div id="container" class="clickable clearfix">
  101. <div class="element transition metal " data-symbol="Hg" data-category="transition">
  102. <p class="number">80</p>
  103. <h3 class="symbol">Hg</h3>
  104. <h2 class="name">Mercury</h2>
  105. <p class="weight">200.59</p>
  106. </div>
  107. <div class="element metalloid " data-symbol="Te" data-category="metalloid">
  108. <p class="number">52</p>
  109. <h3 class="symbol">Te</h3>
  110. <h2 class="name">Tellurium</h2>
  111. <p class="weight">127.6</p>
  112. </div>
  113. <div class="element post-transition metal " data-symbol="Bi" data-category="post-transition">
  114. <p class="number">83</p>
  115. <h3 class="symbol">Bi</h3>
  116. <h2 class="name">Bismuth</h2>
  117. <p class="weight">208.9804</p>
  118. </div>
  119. <div class="element transition metal " data-symbol="Cd" data-category="transition">
  120. <p class="number">48</p>
  121. <h3 class="symbol">Cd</h3>
  122. <h2 class="name">Cadmium</h2>
  123. <p class="weight">112.411</p>
  124. </div>
  125. <div class="element alkaline-earth metal " data-symbol="Ca" data-category="alkaline-earth">
  126. <p class="number">20</p>
  127. <h3 class="symbol">Ca</h3>
  128. <h2 class="name">Calcium</h2>
  129. <p class="weight">40.078</p>
  130. </div>
  131. <div class="element transition metal " data-symbol="Re" data-category="transition">
  132. <p class="number">75</p>
  133. <h3 class="symbol">Re</h3>
  134. <h2 class="name">Rhenium</h2>
  135. <p class="weight">186.207</p>
  136. </div>
  137. <div class="element post-transition metal " data-symbol="Tl" data-category="post-transition">
  138. <p class="number">81</p>
  139. <h3 class="symbol">Tl</h3>
  140. <h2 class="name">Thallium</h2>
  141. <p class="weight">204.3833</p>
  142. </div>
  143. <div class="element metalloid " data-symbol="Sb" data-category="metalloid">
  144. <p class="number">51</p>
  145. <h3 class="symbol">Sb</h3>
  146. <h2 class="name">Antimony</h2>
  147. <p class="weight">121.76</p>
  148. </div>
  149. <div class="element transition metal " data-symbol="Co" data-category="transition">
  150. <p class="number">27</p>
  151. <h3 class="symbol">Co</h3>
  152. <h2 class="name">Cobalt</h2>
  153. <p class="weight">58.933195</p>
  154. </div>
  155. <div class="element lanthanoid metal inner-transition " data-symbol="Lu" data-category="lanthanoid">
  156. <p class="number">71</p>
  157. <h3 class="symbol">Lu</h3>
  158. <h2 class="name">Lutetium</h2>
  159. <p class="weight">174.9668</p>
  160. </div>
  161. <div class="element noble-gas nonmetal " data-symbol="Ar" data-category="noble-gas">
  162. <p class="number">18</p>
  163. <h3 class="symbol">Ar</h3>
  164. <h2 class="name">Argon</h2>
  165. <p class="weight">39.948</p>
  166. </div>
  167. <div class="element alkali metal " data-symbol="Rb" data-category="alkali">
  168. <p class="number">37</p>
  169. <h3 class="symbol">Rb</h3>
  170. <h2 class="name">Rubidium</h2>
  171. <p class="weight">85.4678</p>
  172. </div>
  173. <div class="element other nonmetal " data-symbol="N" data-category="other">
  174. <p class="number">7</p>
  175. <h3 class="symbol">N</h3>
  176. <h2 class="name">Nitrogen</h2>
  177. <p class="weight">14.0067</p>
  178. </div>
  179. <div class="element actinoid metal inner-transition " data-symbol="Np" data-category="actinoid">
  180. <p class="number">93</p>
  181. <h3 class="symbol">Np</h3>
  182. <h2 class="name">Neptunium</h2>
  183. <p class="weight">(237)</p>
  184. </div>
  185. <div class="element actinoid metal inner-transition " data-symbol="Ac" data-category="actinoid">
  186. <p class="number">89</p>
  187. <h3 class="symbol">Ac</h3>
  188. <h2 class="name">Actinium</h2>
  189. <p class="weight">(227)</p>
  190. </div>
  191. </div> <!-- #container -->
  192. <script src="../js/jquery-1.6.4.min.js"></script>
  193. <script src="../jquery.isotope.min.js"></script>
  194. <script src="../js/fake-element.js"></script>
  195. <script>
  196. $.Isotope.prototype._getCenteredMasonryColumns = function() {
  197. this.width = this.element.width();
  198. var parentWidth = this.element.parent().width();
  199. // i.e. options.masonry && options.masonry.columnWidth
  200. var colW = this.options.masonry && this.options.masonry.columnWidth ||
  201. // or use the size of the first item
  202. this.$filteredAtoms.outerWidth(true) ||
  203. // if there's no items, use size of container
  204. parentWidth;
  205. var cols = Math.floor( parentWidth / colW );
  206. cols = Math.max( cols, 1 );
  207. // i.e. this.masonry.cols = ....
  208. this.masonry.cols = cols;
  209. // i.e. this.masonry.columnWidth = ...
  210. this.masonry.columnWidth = colW;
  211. };
  212. $.Isotope.prototype._masonryReset = function() {
  213. // layout-specific props
  214. this.masonry = {};
  215. // FIXME shouldn't have to call this again
  216. this._getCenteredMasonryColumns();
  217. var i = this.masonry.cols;
  218. this.masonry.colYs = [];
  219. while (i--) {
  220. this.masonry.colYs.push( 0 );
  221. }
  222. };
  223. $.Isotope.prototype._masonryResizeChanged = function() {
  224. var prevColCount = this.masonry.cols;
  225. // get updated colCount
  226. this._getCenteredMasonryColumns();
  227. return ( this.masonry.cols !== prevColCount );
  228. };
  229. $.Isotope.prototype._masonryGetContainerSize = function() {
  230. var unusedCols = 0,
  231. i = this.masonry.cols;
  232. // count unused columns
  233. while ( --i ) {
  234. if ( this.masonry.colYs[i] !== 0 ) {
  235. break;
  236. }
  237. unusedCols++;
  238. }
  239. return {
  240. height : Math.max.apply( Math, this.masonry.colYs ),
  241. // fit container to columns that have been used;
  242. width : (this.masonry.cols - unusedCols) * this.masonry.columnWidth
  243. };
  244. };
  245. $(function(){
  246. var $container = $('#container');
  247. // add randomish size classes
  248. $container.find('.element').each(function(){
  249. var $this = $(this),
  250. number = parseInt( $this.find('.number').text(), 10 );
  251. if ( number % 7 % 2 === 1 ) {
  252. $this.addClass('width2');
  253. }
  254. if ( number % 3 === 0 ) {
  255. $this.addClass('height2');
  256. }
  257. });
  258. $container.isotope({
  259. itemSelector : '.element',
  260. masonry : {
  261. columnWidth : 120
  262. },
  263. getSortData : {
  264. symbol : function( $elem ) {
  265. return $elem.attr('data-symbol');
  266. },
  267. category : function( $elem ) {
  268. return $elem.attr('data-category');
  269. },
  270. number : function( $elem ) {
  271. return parseInt( $elem.find('.number').text(), 10 );
  272. },
  273. weight : function( $elem ) {
  274. return parseFloat( $elem.find('.weight').text().replace( /[\(\)]/g, '') );
  275. },
  276. name : function ( $elem ) {
  277. return $elem.find('.name').text();
  278. }
  279. }
  280. });
  281. var $optionSets = $('#options .option-set'),
  282. $optionLinks = $optionSets.find('a');
  283. $optionLinks.click(function(){
  284. var $this = $(this);
  285. // don't proceed if already selected
  286. if ( $this.hasClass('selected') ) {
  287. return false;
  288. }
  289. var $optionSet = $this.parents('.option-set');
  290. $optionSet.find('.selected').removeClass('selected');
  291. $this.addClass('selected');
  292. // make option object dynamically, i.e. { filter: '.my-filter-class' }
  293. var options = {},
  294. key = $optionSet.attr('data-option-key'),
  295. value = $this.attr('data-option-value');
  296. // parse 'false' as false boolean
  297. value = value === 'false' ? false : value;
  298. options[ key ] = value;
  299. if ( key === 'layoutMode' && typeof changeLayoutMode === 'function' ) {
  300. // changes in layout modes need extra logic
  301. changeLayoutMode( $this, options )
  302. } else {
  303. // otherwise, apply new options
  304. $container.isotope( options );
  305. }
  306. return false;
  307. });
  308. $('#insert a').click(function(){
  309. var $newEls = $( fakeElement.getGroup() );
  310. $container.isotope( 'insert', $newEls );
  311. return false;
  312. });
  313. $('#append a').click(function(){
  314. var $newEls = $( fakeElement.getGroup() );
  315. $container.append( $newEls ).isotope( 'appended', $newEls );
  316. return false;
  317. });
  318. // change size of clicked element
  319. $container.delegate( '.element', 'click', function(){
  320. $(this).toggleClass('large');
  321. $container.isotope('reLayout');
  322. });
  323. // toggle variable sizes of all elements
  324. $('#toggle-sizes').find('a').click(function(){
  325. $container
  326. .toggleClass('variable-sizes')
  327. .isotope('reLayout');
  328. return false;
  329. });
  330. var $sortBy = $('#sort-by');
  331. $('#shuffle a').click(function(){
  332. $container.isotope('shuffle');
  333. $sortBy.find('.selected').removeClass('selected');
  334. $sortBy.find('[data-option-value="random"]').addClass('selected');
  335. return false;
  336. });
  337. });
  338. </script>
  339. <footer>
  340. Isotope by <a href="http://desandro.com">David DeSandro</a> / <a href="http://metafizzy.co">Metafizzy</a>
  341. </footer>
  342. </section> <!-- #content -->
  343. </body>
  344. </html>