[
  {
    "path": "01-thursday.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n  <title>01 Thursday</title>\n  \n  <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,700,900' rel='stylesheet' type='text/css'>\n  <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js\"></script>\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js\"></script>\n  <script>var ml = { timelines: {}};</script>\n  <style>\n  body {\n    font: 13px \"Source Sans Pro\", Arial, Helvetica, sans-serif;\n    background-color: #9ba5b5;\n    color: #fff;\n    text-align: center;\n  }\n\n  .moving-letters {\n    position: absolute;\n    top: 0;\n    right: 0;\n    left: 0;\n    bottom: 0;\n    margin: auto;\n    height: 200px;\n  }\n  </style>\n</head>\n<body>\n  <div class=\"moving-letters\">\n    <h1 class=\"ml1\">\n  <span class=\"text-wrapper\">\n    <span class=\"line line1\"></span>\n    <span class=\"letters\">THURSDAY</span>\n    <span class=\"line line2\"></span>\n  </span>\n</h1>\n\n<!--more-->\n\n<script>\n// Wrap every letter in a span\n$('.ml1 .letters').each(function(){\n  $(this).html($(this).text().replace(/([^\\x00-\\x80]|\\w)/g, \"<span class='letter'>$&</span>\"));\n});\n\nml.timelines[\"ml1\"] = anime.timeline({loop: true})\n  .add({\n    targets: '.ml1 .letter',\n    scale: [0.3,1],\n    opacity: [0,1],\n    translateZ: 0,\n    easing: \"easeOutExpo\",\n    duration: 600,\n    delay: function(el, i) {\n      return 70 * (i+1)\n    }\n  }).add({\n    targets: '.ml1 .line',\n    scaleX: [0,1],\n    opacity: [0.5,1],\n    easing: \"easeOutExpo\",\n    duration: 700,\n    offset: '-=875',\n    delay: function(el, i, l) {\n      return 80 * (l - i);\n    }\n  }).add({\n    targets: '.ml1',\n    opacity: 0,\n    duration: 1000,\n    easing: \"easeOutExpo\",\n    delay: 1000\n  });\n</script>\n\n<style>\n.ml1 {\n  font-weight: 900;\n  font-size: 3.5em;\n}\n\n.ml1 .letter {\n  display: inline-block;\n  line-height: 1em;\n}\n\n.ml1 .text-wrapper {\n  position: relative;\n  display: inline-block;\n  padding-top: 0.1em;\n  padding-right: 0.05em;\n  padding-bottom: 0.15em;\n}\n\n.ml1 .line {\n  opacity: 0;\n  position: absolute;\n  left: 0;\n  height: 3px;\n  width: 100%;\n  background-color: #fff;\n  transform-origin: 0 0;\n}\n\n.ml1 .line1 { top: 0; }\n.ml1 .line2 { bottom: 0; }\n</style>\n\n\n  </div>\n</body>\n</html>\n"
  },
  {
    "path": "02-slow-mornings.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n  <title>02 Slow Mornings</title>\n  \n  <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,700,900' rel='stylesheet' type='text/css'>\n  <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js\"></script>\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js\"></script>\n  <script>var ml = { timelines: {}};</script>\n  <style>\n  body {\n    font: 13px \"Source Sans Pro\", Arial, Helvetica, sans-serif;\n    background-color: #e8c3b9;\n    color: #fff;\n    text-align: center;\n  }\n\n  .moving-letters {\n    position: absolute;\n    top: 0;\n    right: 0;\n    left: 0;\n    bottom: 0;\n    margin: auto;\n    height: 200px;\n  }\n  </style>\n</head>\n<body>\n  <div class=\"moving-letters\">\n    <h1 class=\"ml2\">Sunny mornings</h1>\n\n<!--more-->\n\n<script>\n// Wrap every letter in a span\n$('.ml2').each(function(){\n  $(this).html($(this).text().replace(/([^\\x00-\\x80]|\\w)/g, \"<span class='letter'>$&</span>\"));\n});\n\nml.timelines[\"ml2\"] = anime.timeline({loop: true})\n  .add({\n    targets: '.ml2 .letter',\n    scale: [4,1],\n    opacity: [0,1],\n    translateZ: 0,\n    easing: \"easeOutExpo\",\n    duration: 950,\n    delay: function(el, i) {\n      return 70*i;\n    }\n  }).add({\n    targets: '.ml2',\n    opacity: 0,\n    duration: 1000,\n    easing: \"easeOutExpo\",\n    delay: 1000\n  });\n</script>\n\n<style>\n.ml2 {\n  font-weight: 900;\n  font-size: 3.5em;\n}\n\n.ml2 .letter {\n  display: inline-block;\n  line-height: 1em;\n}\n</style>\n\n\n  </div>\n</body>\n</html>\n"
  },
  {
    "path": "03-great-thinkers.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n  <title>03 Great Thinkers</title>\n  \n  <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,700,900' rel='stylesheet' type='text/css'>\n  <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js\"></script>\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js\"></script>\n  <script>var ml = { timelines: {}};</script>\n  <style>\n  body {\n    font: 13px \"Source Sans Pro\", Arial, Helvetica, sans-serif;\n    background-color: #224a54;\n    color: #fff;\n    text-align: center;\n  }\n\n  .moving-letters {\n    position: absolute;\n    top: 0;\n    right: 0;\n    left: 0;\n    bottom: 0;\n    margin: auto;\n    height: 200px;\n  }\n  </style>\n</head>\n<body>\n  <div class=\"moving-letters\">\n    <h1 class=\"ml3\">Great Thinkers</h1>\n\n<!--more-->\n\n<script>\n// Wrap every letter in a span\n$('.ml3').each(function(){\n  $(this).html($(this).text().replace(/([^\\x00-\\x80]|\\w)/g, \"<span class='letter'>$&</span>\"));\n});\n\nml.timelines[\"ml3\"] = anime.timeline({loop: true})\n  .add({\n    targets: '.ml3 .letter',\n    opacity: [0,1],\n    easing: \"easeInOutQuad\",\n    duration: 2250,\n    delay: function(el, i) {\n      return 150 * (i+1)\n    }\n  }).add({\n    targets: '.ml3',\n    opacity: 0,\n    duration: 1000,\n    easing: \"easeOutExpo\",\n    delay: 1000\n  });\n</script>\n\n<style>\n.ml3 {\n  font-weight: 900;\n  font-size: 3.5em;\n}\n</style>\n\n\n  </div>\n</body>\n</html>\n"
  },
  {
    "path": "04-ready.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n  <title>04 Ready</title>\n  \n  <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,700,900' rel='stylesheet' type='text/css'>\n  <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js\"></script>\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js\"></script>\n  <script>var ml = { timelines: {}};</script>\n  <style>\n  body {\n    font: 13px \"Source Sans Pro\", Arial, Helvetica, sans-serif;\n    background-color: #1a1a1a;\n    color: #fff;\n    text-align: center;\n  }\n\n  .moving-letters {\n    position: absolute;\n    top: 0;\n    right: 0;\n    left: 0;\n    bottom: 0;\n    margin: auto;\n    height: 200px;\n  }\n  </style>\n</head>\n<body>\n  <div class=\"moving-letters\">\n    <h1 class=\"ml4\">\n  <span class=\"letters letters-1\">Ready</span>\n  <span class=\"letters letters-2\">Set</span>\n  <span class=\"letters letters-3\">Go!</span>\n</h1>\n\n<!--more-->\n\n<script>\nvar ml4 = {};\nml4.opacityIn = [0,1];\nml4.scaleIn = [0.2, 1];\nml4.scaleOut = 3;\nml4.durationIn = 800;\nml4.durationOut = 600;\nml4.delay = 500;\n\nml.timelines[\"ml4\"] = anime.timeline({loop: true})\n  .add({\n    targets: '.ml4 .letters-1',\n    opacity: ml4.opacityIn,\n    scale: ml4.scaleIn,\n    duration: ml4.durationIn\n  }).add({\n    targets: '.ml4 .letters-1',\n    opacity: 0,\n    scale: ml4.scaleOut,\n    duration: ml4.durationOut,\n    easing: \"easeInExpo\",\n    delay: ml4.delay\n  }).add({\n    targets: '.ml4 .letters-2',\n    opacity: ml4.opacityIn,\n    scale: ml4.scaleIn,\n    duration: ml4.durationIn\n  }).add({\n    targets: '.ml4 .letters-2',\n    opacity: 0,\n    scale: ml4.scaleOut,\n    duration: ml4.durationOut,\n    easing: \"easeInExpo\",\n    delay: ml4.delay\n  }).add({\n    targets: '.ml4 .letters-3',\n    opacity: ml4.opacityIn,\n    scale: ml4.scaleIn,\n    duration: ml4.durationIn\n  }).add({\n    targets: '.ml4 .letters-3',\n    opacity: 0,\n    scale: ml4.scaleOut,\n    duration: ml4.durationOut,\n    easing: \"easeInExpo\",\n    delay: ml4.delay\n  }).add({\n    targets: '.ml4',\n    opacity: 0,\n    duration: 500,\n    delay: 500\n  });\n</script>\n\n<style>\n.ml4 {\n  position: relative;\n  font-weight: 900;\n  font-size: 4.5em;\n}\n.ml4 .letters {\n  position: absolute;\n  margin: auto;\n  left: 0;\n  top: 0.3em;\n  right: 0;\n  opacity: 0; \n}\n</style>\n\n\n  </div>\n</body>\n</html>\n"
  },
  {
    "path": "05-signal-and-noise.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n  <title>05 Signal And Noise</title>\n  \n  <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,700,900' rel='stylesheet' type='text/css'>\n  <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js\"></script>\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js\"></script>\n  <script>var ml = { timelines: {}};</script>\n  <style>\n  body {\n    font: 13px \"Source Sans Pro\", Arial, Helvetica, sans-serif;\n    background-color: #f3e9c6;\n    color: #fff;\n    text-align: center;\n  }\n\n  .moving-letters {\n    position: absolute;\n    top: 0;\n    right: 0;\n    left: 0;\n    bottom: 0;\n    margin: auto;\n    height: 200px;\n  }\n  </style>\n</head>\n<body>\n  <div class=\"moving-letters\">\n    <h1 class=\"ml5\">\n  <span class=\"text-wrapper\">\n    <span class=\"line line1\"></span>\n    <span class=\"letters letters-left\">Signal</span>\n    <span class=\"letters ampersand\">&amp;</span>\n    <span class=\"letters letters-right\">Noise</span>\n    <span class=\"line line2\"></span>\n  </span>\n</h1>\n\n<!--more-->\n\n<script>\nml.timelines[\"ml5\"] = anime.timeline({loop: true})\n  .add({\n    targets: '.ml5 .line',\n    opacity: [0.5,1],\n    scaleX: [0, 1],\n    easing: \"easeInOutExpo\",\n    duration: 700\n  }).add({\n    targets: '.ml5 .line',\n    duration: 600,\n    easing: \"easeOutExpo\",\n    translateY: function(e, i, l) {\n      var offset = -0.625 + 0.625*2*i;\n      return offset + \"em\";\n    }\n  }).add({\n    targets: '.ml5 .ampersand',\n    opacity: [0,1],\n    scaleY: [0.5, 1],\n    easing: \"easeOutExpo\",\n    duration: 600,\n    offset: '-=600'\n  }).add({\n    targets: '.ml5 .letters-left',\n    opacity: [0,1],\n    translateX: [\"0.5em\", 0],\n    easing: \"easeOutExpo\",\n    duration: 600,\n    offset: '-=300'\n  }).add({\n    targets: '.ml5 .letters-right',\n    opacity: [0,1],\n    translateX: [\"-0.5em\", 0],\n    easing: \"easeOutExpo\",\n    duration: 600,\n    offset: '-=600'\n  }).add({\n    targets: '.ml5',\n    opacity: 0,\n    duration: 1000,\n    easing: \"easeOutExpo\",\n    delay: 1000\n  });\n</script>\n\n<style>\n.ml5 {\n  position: relative;\n  font-weight: 300;\n  font-size: 4.5em;\n  color: #402d2d;\n}\n\n.ml5 .text-wrapper {\n  position: relative;\n  display: inline-block;\n  padding-top: 0.1em;\n  padding-right: 0.05em;\n  padding-bottom: 0.15em;\n  line-height: 1em;\n}\n\n.ml5 .line {\n  position: absolute;\n  left: 0;\n  top: 0;\n  bottom: 0;\n  margin: auto;\n  height: 3px;\n  width: 100%;\n  background-color: #402d2d;\n  transform-origin: 0.5 0;\n}\n\n.ml5 .ampersand {\n  font-family: Baskerville, \"EB Garamond\", serif;\n  font-style: italic;\n  font-weight: 400;\n  width: 1em;\n  margin-right: -0.1em;\n  margin-left: -0.1em;\n}\n\n.ml5 .letters {\n  display: inline-block;\n  opacity: 0;\n}\n</style>\n\n\n  </div>\n</body>\n</html>\n"
  },
  {
    "path": "06-beautiful-questions.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n  <title>06 Beautiful Questions</title>\n  \n  <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,700,900' rel='stylesheet' type='text/css'>\n  <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js\"></script>\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js\"></script>\n  <script>var ml = { timelines: {}};</script>\n  <style>\n  body {\n    font: 13px \"Source Sans Pro\", Arial, Helvetica, sans-serif;\n    background-color: #c1605c;\n    color: #fff;\n    text-align: center;\n  }\n\n  .moving-letters {\n    position: absolute;\n    top: 0;\n    right: 0;\n    left: 0;\n    bottom: 0;\n    margin: auto;\n    height: 200px;\n  }\n  </style>\n</head>\n<body>\n  <div class=\"moving-letters\">\n    <h1 class=\"ml6\">\n  <span class=\"text-wrapper\">\n    <span class=\"letters\">Beautiful Questions</span>\n  </span>\n</h1>\n\n<!--more-->\n\n<script>\n// Wrap every letter in a span\n$('.ml6 .letters').each(function(){\n  $(this).html($(this).text().replace(/([^\\x00-\\x80]|\\w)/g, \"<span class='letter'>$&</span>\"));\n});\n\nml.timelines[\"ml6\"] = anime.timeline({loop: true})\n  .add({\n    targets: '.ml6 .letter',\n    translateY: [\"1.2em\", 0],\n    translateZ: 0,\n    duration: 750,\n    delay: function(el, i) {\n      return 50 * i;\n    }\n  }).add({\n    targets: '.ml6',\n    opacity: 0,\n    duration: 1000,\n    easing: \"easeOutExpo\",\n    delay: 1000\n  });\n</script>\n\n<style>\n.ml6 {\n  position: relative;\n  font-weight: 900;\n  font-size: 3.3em;\n}\n\n.ml6 .text-wrapper {\n  position: relative;\n  display: inline-block;\n  padding-top: 0.2em;\n  padding-right: 0.05em;\n  padding-bottom: 0.1em;\n  overflow: hidden;\n}\n\n.ml6 .letter {\n  display: inline-block;\n  line-height: 1em;\n}\n</style>\n\n\n  </div>\n</body>\n</html>\n"
  },
  {
    "path": "07-reality-is-broken.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n  <title>07 Reality Is Broken</title>\n  \n  <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,700,900' rel='stylesheet' type='text/css'>\n  <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js\"></script>\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js\"></script>\n  <script>var ml = { timelines: {}};</script>\n  <style>\n  body {\n    font: 13px \"Source Sans Pro\", Arial, Helvetica, sans-serif;\n    background-color: #45383c;\n    color: #fff;\n    text-align: center;\n  }\n\n  .moving-letters {\n    position: absolute;\n    top: 0;\n    right: 0;\n    left: 0;\n    bottom: 0;\n    margin: auto;\n    height: 200px;\n  }\n  </style>\n</head>\n<body>\n  <div class=\"moving-letters\">\n    <h1 class=\"ml7\">\n  <span class=\"text-wrapper\">\n    <span class=\"letters\">Reality is broken</span>\n  </span>\n</h1>\n\n<!--more-->\n\n<script>\n// Wrap every letter in a span\n$('.ml7 .letters').each(function(){\n  $(this).html($(this).text().replace(/([^\\x00-\\x80]|\\w)/g, \"<span class='letter'>$&</span>\"));\n});\n\nml.timelines[\"ml7\"] = anime.timeline({loop: true})\n  .add({\n    targets: '.ml7 .letter',\n    translateY: [\"1.1em\", 0],\n    translateX: [\"0.55em\", 0],\n    translateZ: 0,\n    rotateZ: [180, 0],\n    duration: 750,\n    easing: \"easeOutExpo\",\n    delay: function(el, i) {\n      return 50 * i;\n    }\n  }).add({\n    targets: '.ml7',\n    opacity: 0,\n    duration: 1000,\n    easing: \"easeOutExpo\",\n    delay: 1000\n  });\n</script>\n\n<style>\n.ml7 {\n  position: relative;\n  font-weight: 900;\n  font-size: 3.7em;\n}\n.ml7 .text-wrapper {\n  position: relative;\n  display: inline-block;\n  padding-top: 0.2em;\n  padding-right: 0.05em;\n  padding-bottom: 0.1em;\n  overflow: hidden;\n}\n.ml7 .letter {\n  transform-origin: 0 100%;\n  display: inline-block;\n  line-height: 1em;\n}\n</style>\n\n\n  </div>\n</body>\n</html>\n"
  },
  {
    "path": "08-hey.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n  <title>08 Hey</title>\n  \n  <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,700,900' rel='stylesheet' type='text/css'>\n  <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js\"></script>\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js\"></script>\n  <script>var ml = { timelines: {}};</script>\n  <style>\n  body {\n    font: 13px \"Source Sans Pro\", Arial, Helvetica, sans-serif;\n    background-color: #98bec8;\n    color: #fff;\n    text-align: center;\n  }\n\n  .moving-letters {\n    position: absolute;\n    top: 0;\n    right: 0;\n    left: 0;\n    bottom: 0;\n    margin: auto;\n    height: 200px;\n  }\n  </style>\n</head>\n<body>\n  <div class=\"moving-letters\">\n    <h1 class=\"ml8\">\n  <span class=\"letters-container\">\n    <span class=\"letters letters-left\">Hi</span>\n    <span class=\"letters bang\">!</span>\n  </span>\n  <span class=\"circle circle-white\"></span>\n  <span class=\"circle circle-dark\"></span>\n  <span class=\"circle circle-container\"><span class=\"circle circle-dark-dashed\"></span></span>\n</h1>\n\n<!--more-->\n\n<script>\nml.timelines[\"ml8\"] = anime.timeline({loop: true})\n  .add({\n    targets: '.ml8 .circle-white',\n    scale: [0, 3],\n    opacity: [1, 0],\n    easing: \"easeInOutExpo\",\n    rotateZ: 360,\n    duration: 1100\n  }).add({\n    targets: '.ml8 .circle-container',\n    scale: [0, 1],\n    duration: 1100,\n    easing: \"easeInOutExpo\",\n    offset: '-=1000'\n  }).add({\n    targets: '.ml8 .circle-dark',\n    scale: [0, 1],\n    duration: 1100,\n    easing: \"easeOutExpo\",\n    offset: '-=600'\n  }).add({\n    targets: '.ml8 .letters-left',\n    scale: [0, 1],\n    duration: 1200,\n    offset: '-=550'\n  }).add({\n    targets: '.ml8 .bang',\n    scale: [0, 1],\n    rotateZ: [45, 15],\n    duration: 1200,\n    offset: '-=1000'\n  }).add({\n    targets: '.ml8',\n    opacity: 0,\n    duration: 1000,\n    easing: \"easeOutExpo\",\n    delay: 1400\n  });\n\nanime({\n  targets: '.ml8 .circle-dark-dashed',\n  rotateZ: 360,\n  duration: 8000,\n  easing: \"linear\",\n  loop: true\n});\n</script>\n\n<style>\nh1.ml8 {\n  font-weight: 900;\n  font-size: 4.5em;\n  color: #fff;\n  width: 3em;\n  height: 3em;\n}\n\n.ml8 .letters-container {\n  position: absolute;\n  left: 0;\n  right: 0;\n  margin: auto;\n  top: 0;\n  bottom: 0;\n  height: 1em;\n}\n\n.ml8 .letters {\n  position: relative;\n  z-index: 2;\n  display: inline-block;\n  line-height: 0.7em;\n  right: -0.12em;\n  top: -0.2em;\n}\n\n.ml8 .bang {\n  font-size: 1.4em;\n  top: auto;\n  left: -0.06em;\n}\n\n.ml8 .circle {\n  position: absolute;\n  left: 0;\n  right: 0;\n  margin: auto;\n  top: 0;\n  bottom: 0;\n}\n\n.ml8 .circle-white {\n  width: 3em;\n  height: 3em;\n  border: 2px dashed white;\n  border-radius: 2em;\n}\n\n.ml8 .circle-dark {\n  width: 2.2em;\n  height: 2.2em;\n  background-color: #4f7b86;\n  border-radius: 3em;\n  z-index: 1;\n}\n\n.ml8 .circle-dark-dashed {\n  border-radius: 2.4em;\n  background-color: transparent;\n  border: 2px dashed #4f7b86;\n  width: 2.3em;\n  height: 2.3em;\n}\n</style>\n\n\n  </div>\n</body>\n</html>\n"
  },
  {
    "path": "09-coffee-mornings.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n  <title>09 Coffee Mornings</title>\n  \n  <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,700,900' rel='stylesheet' type='text/css'>\n  <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js\"></script>\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js\"></script>\n  <script>var ml = { timelines: {}};</script>\n  <style>\n  body {\n    font: 13px \"Source Sans Pro\", Arial, Helvetica, sans-serif;\n    background-color: #1a1a1a;\n    color: #fff;\n    text-align: center;\n  }\n\n  .moving-letters {\n    position: absolute;\n    top: 0;\n    right: 0;\n    left: 0;\n    bottom: 0;\n    margin: auto;\n    height: 200px;\n  }\n  </style>\n</head>\n<body>\n  <div class=\"moving-letters\">\n    <h1 class=\"ml9\">\n  <span class=\"text-wrapper\">\n    <span class=\"letters\">Coffee mornings</span>\n  </span>\n</h1>\n\n<!--more-->\n\n<script>\n// Wrap every letter in a span\n$('.ml9 .letters').each(function(){\n  $(this).html($(this).text().replace(/([^\\x00-\\x80]|\\w)/g, \"<span class='letter'>$&</span>\"));\n});\n\nml.timelines[\"ml9\"] = anime.timeline({loop: true})\n  .add({\n    targets: '.ml9 .letter',\n    scale: [0, 1],\n    duration: 1500,\n    elasticity: 600,\n    delay: function(el, i) {\n      return 45 * (i+1)\n    }\n  }).add({\n    targets: '.ml9',\n    opacity: 0,\n    duration: 1000,\n    easing: \"easeOutExpo\",\n    delay: 1000\n  });\n</script>\n\n<style>\n.ml9 {\n  position: relative;\n  font-weight: 200;\n  font-size: 4em;\n}\n\n.ml9 .text-wrapper {\n  position: relative;\n  display: inline-block;\n  padding-top: 0.2em;\n  padding-right: 0.05em;\n  padding-bottom: 0.1em;\n  overflow: hidden;\n}\n\n.ml9 .letter {\n  transform-origin: 50% 100%;\n  display: inline-block;\n  line-height: 1em;\n}\n</style>\n\n\n  </div>\n</body>\n</html>\n"
  },
  {
    "path": "10-domino-dreams.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n  <title>10 Domino Dreams</title>\n  \n  <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,700,900' rel='stylesheet' type='text/css'>\n  <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js\"></script>\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js\"></script>\n  <script>var ml = { timelines: {}};</script>\n  <style>\n  body {\n    font: 13px \"Source Sans Pro\", Arial, Helvetica, sans-serif;\n    background-color: #224a54;\n    color: #fff;\n    text-align: center;\n  }\n\n  .moving-letters {\n    position: absolute;\n    top: 0;\n    right: 0;\n    left: 0;\n    bottom: 0;\n    margin: auto;\n    height: 200px;\n  }\n  </style>\n</head>\n<body>\n  <div class=\"moving-letters\">\n    <h1 class=\"ml10\">\n  <span class=\"text-wrapper\">\n    <span class=\"letters\">Domino Dreams</span>\n  </span>\n</h1>\n\n<!--more-->\n\n<script>\n// Wrap every letter in a span\n$('.ml10 .letters').each(function(){\n  $(this).html($(this).text().replace(/([^\\x00-\\x80]|\\w)/g, \"<span class='letter'>$&</span>\"));\n});\n\nml.timelines[\"ml10\"] = anime.timeline({loop: true})\n  .add({\n    targets: '.ml10 .letter',\n    rotateY: [-90, 0],\n    duration: 1300,\n    delay: function(el, i) {\n      return 45 * i;\n    }\n  }).add({\n    targets: '.ml10',\n    opacity: 0,\n    duration: 1000,\n    easing: \"easeOutExpo\",\n    delay: 1000\n  });\n</script>\n\n<style>\n.ml10 {\n  position: relative;\n  font-weight: 900;\n  font-size: 4em;\n}\n\n.ml10 .text-wrapper {\n  position: relative;\n  display: inline-block;\n  padding-top: 0.2em;\n  padding-right: 0.05em;\n  padding-bottom: 0.1em;\n  overflow: hidden;\n}\n\n.ml10 .letter {\n  display: inline-block;\n  line-height: 1em;\n  transform-origin: 0 0;\n}\n</style>\n\n\n  </div>\n</body>\n</html>\n"
  },
  {
    "path": "11-hello-goodbye.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n  <title>11 Hello Goodbye</title>\n  \n  <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,700,900' rel='stylesheet' type='text/css'>\n  <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js\"></script>\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js\"></script>\n  <script>var ml = { timelines: {}};</script>\n  <style>\n  body {\n    font: 13px \"Source Sans Pro\", Arial, Helvetica, sans-serif;\n    background-color: #e8c3b9;\n    color: #fff;\n    text-align: center;\n  }\n\n  .moving-letters {\n    position: absolute;\n    top: 0;\n    right: 0;\n    left: 0;\n    bottom: 0;\n    margin: auto;\n    height: 200px;\n  }\n  </style>\n</head>\n<body>\n  <div class=\"moving-letters\">\n    <h1 class=\"ml11\">\n  <span class=\"text-wrapper\">\n    <span class=\"line line1\"></span>\n    <span class=\"letters\">Hello Goodbye</span>\n  </span>\n</h1>\n\n<!--more-->\n\n<style>\n.ml11 {\n  font-weight: 900;\n  font-size: 3.5em;\n}\n\n.ml11 .text-wrapper {\n  position: relative;\n  display: inline-block;\n  padding-top: 0.1em;\n  padding-right: 0.05em;\n  padding-bottom: 0.15em;\n}\n\n.ml11 .line {\n  opacity: 0;\n  position: absolute;\n  left: 0;\n  height: 100%;\n  width: 3px;\n  background-color: #fff;\n  transform-origin: 0 50%;\n}\n\n.ml11 .line1 { \n  top: 0; \n  left: 0;\n}\n\n.ml11 .letter {\n  display: inline-block;\n  line-height: 1em;\n}\n</style>\n\n<script>\n// Wrap every letter in a span\n$('.ml11 .letters').each(function(){\n  $(this).html($(this).text().replace(/([^\\x00-\\x80]|\\w)/g, \"<span class='letter'>$&</span>\"));\n});\n\nml.timelines[\"ml11\"] = anime.timeline({loop: true})\n  .add({\n    targets: '.ml11 .line',\n    scaleY: [0,1],\n    opacity: [0.5,1],\n    easing: \"easeOutExpo\",\n    duration: 700\n  })\n  .add({\n    targets: '.ml11 .line',\n    translateX: [0,$(\".ml11 .letters\").width()],\n    easing: \"easeOutExpo\",\n    duration: 700,\n    delay: 100\n  }).add({\n    targets: '.ml11 .letter',\n    opacity: [0,1],\n    easing: \"easeOutExpo\",\n    duration: 600,\n    offset: '-=775',\n    delay: function(el, i) {\n      return 34 * (i+1)\n    }\n  }).add({\n    targets: '.ml11',\n    opacity: 0,\n    duration: 1000,\n    easing: \"easeOutExpo\",\n    delay: 1000\n  });\n</script>\n\n\n  </div>\n</body>\n</html>\n"
  },
  {
    "path": "12-a-new-production.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n  <title>12 A New Production</title>\n  \n  <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,700,900' rel='stylesheet' type='text/css'>\n  <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js\"></script>\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js\"></script>\n  <script>var ml = { timelines: {}};</script>\n  <style>\n  body {\n    font: 13px \"Source Sans Pro\", Arial, Helvetica, sans-serif;\n    background-color: #9ba5b5;\n    color: #fff;\n    text-align: center;\n  }\n\n  .moving-letters {\n    position: absolute;\n    top: 0;\n    right: 0;\n    left: 0;\n    bottom: 0;\n    margin: auto;\n    height: 200px;\n  }\n  </style>\n</head>\n<body>\n  <div class=\"moving-letters\">\n    <h1 class=\"ml12\">A new production</h1>\n\n<!--more-->\n\n<script>\n// Wrap every letter in a span\n$('.ml12').each(function(){\n  $(this).html($(this).text().replace(/([^\\x00-\\x80]|\\w)/g, \"<span class='letter'>$&</span>\"));\n});\n\nml.timelines[\"ml12\"] = anime.timeline({loop: true})\n  .add({\n    targets: '.ml12 .letter',\n    translateX: [40,0],\n    translateZ: 0,\n    opacity: [0,1],\n    easing: \"easeOutExpo\",\n    duration: 1200,\n    delay: function(el, i) {\n      return 500 + 30 * i;\n    }\n  }).add({\n    targets: '.ml12 .letter',\n    translateX: [0,-30],\n    opacity: [1,0],\n    easing: \"easeInExpo\",\n    duration: 1100,\n    delay: function(el, i) {\n      return 100 + 30 * i;\n    }\n  });\n</script>\n\n<style>\n.ml12 {\n  font-weight: 200;\n  font-size: 1.8em;\n  text-transform: uppercase;\n  letter-spacing: 0.5em;\n}\n\n.ml12 .letter {\n  display: inline-block;\n  line-height: 1em;\n}\n</style>\n\n\n  </div>\n</body>\n</html>\n"
  },
  {
    "path": "13-rising-strong.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n  <title>13 Rising Strong</title>\n  \n  <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,700,900' rel='stylesheet' type='text/css'>\n  <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js\"></script>\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js\"></script>\n  <script>var ml = { timelines: {}};</script>\n  <style>\n  body {\n    font: 13px \"Source Sans Pro\", Arial, Helvetica, sans-serif;\n    background-color: #98bec8;\n    color: #fff;\n    text-align: center;\n  }\n\n  .moving-letters {\n    position: absolute;\n    top: 0;\n    right: 0;\n    left: 0;\n    bottom: 0;\n    margin: auto;\n    height: 200px;\n  }\n  </style>\n</head>\n<body>\n  <div class=\"moving-letters\">\n    <h1 class=\"ml13\">Rising Strong</h1>\n\n<!--more-->\n\n<script>\n// Wrap every letter in a span\n$('.ml13').each(function(){\n  $(this).html($(this).text().replace(/([^\\x00-\\x80]|\\w)/g, \"<span class='letter'>$&</span>\"));\n});\n\nml.timelines[\"ml13\"] = anime.timeline({loop: true})\n  .add({\n    targets: '.ml13 .letter',\n    translateY: [100,0],\n    translateZ: 0,\n    opacity: [0,1],\n    easing: \"easeOutExpo\",\n    duration: 1400,\n    delay: function(el, i) {\n      return 300 + 30 * i;\n    }\n  }).add({\n    targets: '.ml13 .letter',\n    translateY: [0,-100],\n    opacity: [1,0],\n    easing: \"easeInExpo\",\n    duration: 1200,\n    delay: function(el, i) {\n      return 100 + 30 * i;\n    }\n  });\n</script>\n\n<style>\n.ml13 {\n  font-size: 1.9em;\n  text-transform: uppercase;\n  letter-spacing: 0.5em;\n  font-weight: 600;\n}\n\n.ml13 .letter {\n  display: inline-block;\n  line-height: 1em;\n}\n</style>\n\n\n  </div>\n</body>\n</html>\n"
  },
  {
    "path": "14-finding-your-element.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n  <title>14 Finding Your Element</title>\n  \n  <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,700,900' rel='stylesheet' type='text/css'>\n  <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js\"></script>\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js\"></script>\n  <script>var ml = { timelines: {}};</script>\n  <style>\n  body {\n    font: 13px \"Source Sans Pro\", Arial, Helvetica, sans-serif;\n    background-color: #45383c;\n    color: #fff;\n    text-align: center;\n  }\n\n  .moving-letters {\n    position: absolute;\n    top: 0;\n    right: 0;\n    left: 0;\n    bottom: 0;\n    margin: auto;\n    height: 200px;\n  }\n  </style>\n</head>\n<body>\n  <div class=\"moving-letters\">\n    <h1 class=\"ml14\">\n  <span class=\"text-wrapper\">\n    <span class=\"letters\">Find Your Element</span>\n    <span class=\"line\"></span>\n  </span>\n</h1>\n\n<!--more-->\n\n<script>\n// Wrap every letter in a span\n$('.ml14 .letters').each(function(){\n  $(this).html($(this).text().replace(/([^\\x00-\\x80]|\\w)/g, \"<span class='letter'>$&</span>\"));\n});\n\nml.timelines[\"ml14\"] = anime.timeline({loop: true})\n  .add({\n    targets: '.ml14 .line',\n    scaleX: [0,1],\n    opacity: [0.5,1],\n    easing: \"easeInOutExpo\",\n    duration: 900\n  }).add({\n    targets: '.ml14 .letter',\n    opacity: [0,1],\n    translateX: [40,0],\n    translateZ: 0,\n    scaleX: [0.3, 1],\n    easing: \"easeOutExpo\",\n    duration: 800,\n    offset: '-=600',\n    delay: function(el, i) {\n      return 150 + 25 * i;\n    }\n  }).add({\n    targets: '.ml14',\n    opacity: 0,\n    duration: 1000,\n    easing: \"easeOutExpo\",\n    delay: 1000\n  });\n</script>\n\n<style>\n.ml14 {\n  font-weight: 200;\n  font-size: 3.2em;\n}\n\n.ml14 .text-wrapper {\n  position: relative;\n  display: inline-block;\n  padding-top: 0.1em;\n  padding-right: 0.05em;\n  padding-bottom: 0.15em;\n}\n\n.ml14 .line {\n  opacity: 0;\n  position: absolute;\n  left: 0;\n  height: 2px;\n  width: 100%;\n  background-color: #fff;\n  transform-origin: 100% 100%;\n  bottom: 0;\n}\n\n.ml14 .letter {\n  display: inline-block;\n  line-height: 1em;\n}\n</style>\n\n\n  </div>\n</body>\n</html>\n"
  },
  {
    "path": "15-out-now.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n  <title>15 Out Now</title>\n  \n  <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,700,900' rel='stylesheet' type='text/css'>\n  <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js\"></script>\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js\"></script>\n  <script>var ml = { timelines: {}};</script>\n  <style>\n  body {\n    font: 13px \"Source Sans Pro\", Arial, Helvetica, sans-serif;\n    background-color: #c1605c;\n    color: #fff;\n    text-align: center;\n  }\n\n  .moving-letters {\n    position: absolute;\n    top: 0;\n    right: 0;\n    left: 0;\n    bottom: 0;\n    margin: auto;\n    height: 200px;\n  }\n  </style>\n</head>\n<body>\n  <div class=\"moving-letters\">\n    <h1 class=\"ml15\">\n  <span class=\"word\">Out</span>\n  <span class=\"word\">now</span>\n</h1>\n\n<!--more-->\n\n<script>\nml.timelines[\"ml15\"] = anime.timeline({loop: true})\n  .add({\n    targets: '.ml15 .word',\n    scale: [14,1],\n    opacity: [0,1],\n    easing: \"easeOutCirc\",\n    duration: 800,\n    delay: function(el, i) {\n      return 800 * i;\n    }\n  }).add({\n    targets: '.ml15',\n    opacity: 0,\n    duration: 1000,\n    easing: \"easeOutExpo\",\n    delay: 1000\n  });\n</script>\n\n<style>\n.ml15 {\n  font-weight: 800;\n  font-size: 3.8em;\n  text-transform: uppercase;\n  letter-spacing: 0.5em;\n}\n\n.ml15 .word {\n  display: inline-block;\n  line-height: 1em;\n}\n</style>\n\n\n  </div>\n</body>\n</html>\n"
  },
  {
    "path": "16-made-with-love.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n  <title>16 Made With Love</title>\n  \n  <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,700,900' rel='stylesheet' type='text/css'>\n  <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js\"></script>\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js\"></script>\n  <script>var ml = { timelines: {}};</script>\n  <style>\n  body {\n    font: 13px \"Source Sans Pro\", Arial, Helvetica, sans-serif;\n    background-color: #f3e9c6;\n    color: #fff;\n    text-align: center;\n  }\n\n  .moving-letters {\n    position: absolute;\n    top: 0;\n    right: 0;\n    left: 0;\n    bottom: 0;\n    margin: auto;\n    height: 200px;\n  }\n  </style>\n</head>\n<body>\n  <div class=\"moving-letters\">\n    <h1 class=\"ml16\">Made with love</h1>\n\n<!--more-->\n\n<script>\n// Wrap every letter in a span\n$('.ml16').each(function(){\n  $(this).html($(this).text().replace(/([^\\x00-\\x80]|\\w)/g, \"<span class='letter'>$&</span>\"));\n});\n\nml.timelines[\"ml16\"] = anime.timeline({loop: true})\n  .add({\n    targets: '.ml16 .letter',\n    translateY: [-100,0],\n    easing: \"easeOutExpo\",\n    duration: 1400,\n    delay: function(el, i) {\n      return 30 * i;\n    }\n  }).add({\n    targets: '.ml16',\n    opacity: 0,\n    duration: 1000,\n    easing: \"easeOutExpo\",\n    delay: 1000\n  });\n</script>\n\n<style>\n.ml16 {\n  color: #402d2d;\n  padding: 40px 0;\n  font-weight: 800;\n  font-size: 2em;\n  text-transform: uppercase;\n  letter-spacing: 0.5em;\n  overflow: hidden;\n}\n\n.ml16 .letter {\n  display: inline-block;\n  line-height: 1em;\n}\n</style>\n\n\n  </div>\n</body>\n</html>\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2017 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# [Moving Letters](http://tobiasahlin.com/moving-letters/)\n\n[Text animated](http://tobiasahlin.com/moving-letters/) with [anime.js](https://github.com/juliangarnier/anime).\n"
  }
]