script.js 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. jQuery(document).ready(function($) {
  2. console.log("Hello Les notices");
  3. // $('.story-page').each(function(index, el) {
  4. // $figures = $('figure', this);
  5. // $(this).addClass("figures-"+$figures.length);
  6. // });
  7. $('.story-page-2 h2, .story-page:not(.story-page-0):not(.story-page-1):not(.story-page-2) h1').each(function(index, el) {
  8. // console.log("item to typotize",$(this).text());
  9. var chars = $(this).text().split("");
  10. // console.log("chars", chars);
  11. var typotized = "";
  12. var k = 0;
  13. for (var j = 0; j < chars.length; j++) {
  14. // console.log('node '+j+" modulo : "+(j % 6),chars[j]);
  15. if(! /\s/.test(chars[j]) ){
  16. k++;
  17. if ( k % 12 == 0){
  18. typotized += '<span class="typo-4">'+chars[j]+'</span>';
  19. continue;
  20. }
  21. if ( k % 9 == 0){
  22. typotized += '<span class="typo-3">'+chars[j]+'</span>';
  23. continue;
  24. }
  25. if ( k % 6 == 0){
  26. typotized += '<span class="typo-2">'+chars[j]+'</span>';
  27. continue;
  28. }
  29. if ( k % 3 == 0){
  30. typotized += '<span class="typo-1">'+chars[j]+'</span>';
  31. continue;
  32. }
  33. }
  34. typotized += chars[j];
  35. }
  36. $(this).html(typotized);
  37. });
  38. /*
  39. // Detect if a flow element is in odd or even paper
  40. // var flow = document.webkitGetFlowByName('flow-main');
  41. // var flow = NamedFlowMap;//();//getFlowByName("flow-main");
  42. // console.log('flow', window);
  43. var namedFlow = document.webkitGetNamedFlows()["flow-main"];
  44. console.log(namedFlow);
  45. // var regions = namedFlow.getRegions();
  46. // var content = namedFlow.getContent();
  47. setTimeout(function(){
  48. var region, paper, paperid;
  49. $(".story-page>h1,.story-page>figure", "#flow-main").each(function(index, el) {
  50. region = namedFlow.getRegionsByContent(this);
  51. // paper = $(region).parents('.paper');
  52. paperid = $(region).parents('.paper').attr('id').match(/page-(\d+)/)[1];
  53. // console.log(paperid);
  54. if(paperid % 2 == 0){
  55. $(this).addClass('paper-odd')
  56. }else{
  57. $(this).addClass('paper-even')
  58. }
  59. });
  60. }, 1000);
  61. */
  62. });