Difference between revisions of "Team:Newcastle/Notebook/Diary"

Line 4: Line 4:
  
 
<html>
 
<html>
jQuery(document).ready(function($){
 
var $timeline_block = $('.cd-timeline-block');
 
 
//hide timeline blocks which are outside the viewport
 
$timeline_block.each(function(){
 
if($(this).offset().top > $(window).scrollTop()+$(window).height()*0.75) {
 
$(this).find('.cd-timeline-img, .cd-timeline-content').addClass('is-hidden');
 
}
 
});
 
 
//on scolling, show/animate timeline blocks when enter the viewport
 
$(window).on('scroll', function(){
 
$timeline_block.each(function(){
 
if( $(this).offset().top <= $(window).scrollTop()+$(window).height()*0.75 && $(this).find('.cd-timeline-img').hasClass('is-hidden') ) {
 
$(this).find('.cd-timeline-img, .cd-timeline-content').removeClass('is-hidden').addClass('bounce-in');
 
}
 
});
 
});
 
});
 
 
<style>
 
<style>
@import "bourbon";
 
 
// variables - colors
 
 
$main-text: #7f8c97; // main text
 
$link: #acb7c0; // anchor tags
 
$background: #e9f0f5; // body background color
 
 
$color-1: #303e49; // blue dark
 
$color-2: #c03b44; // red
 
$color-3: #ffffff; // white
 
$color-4: #75ce66; // green
 
$color-5: #f0ca45; // yellow
 
 
// variables - fonts
 
 
$primary-font: 'Droid Serif', serif;
 
$secondary-font: 'Open Sans', sans-serif;
 
 
// mixins - rem fallback - credits: http://zerosixthree.se/
 
  
@function calculateRem($size) {
+
p#intro
  $remSize: $size / 16px;
+
{
  @return $remSize * 1rem;
+
    color: #292000;
 
}
 
}
  
@mixin font-size($size) {
+
p#intro a, p#intro a:focus, p#intro a:hover
  font-size: $size;
+
{
  font-size: calculateRem($size);
+
    color: #e35c5c;
 
}
 
}
  
// mixins - border radius
+
#mw-content-text
 
+
{
@mixin border-radius($radius:.25em) {
+
    background-color: #efe6c5;
  border-radius: $radius;
+
 
}
 
}
  
// layout - breakpoints
+
h1, h2, h3 {
 
+
   font-weight: 300;
$S:    320px; 
+
$M:    768px;   
+
$L:    1170px;   
+
 
+
// layout - media queries
+
 
+
@mixin MQ($canvas) {
+
   @if $canvas == S {
+
  @media only screen and (min-width: $S) { @content; }
+
  }
+
  @else if $canvas == M {
+
  @media only screen and (min-width: $M) { @content; }
+
  }
+
  @else if $canvas == L {
+
  @media only screen and (min-width: $L) { @content; }
+
  }
+
 
}
 
}
  
/* --------------------------------
+
h3
 
+
{
Primary style
+
    color: #efe6c5;
 
+
-------------------------------- */
+
 
+
html * {
+
-webkit-font-smoothing: antialiased;
+
-moz-osx-font-smoothing: grayscale;
+
 
}
 
}
  
*, *:after, *:before {
+
h1#title
@include box-sizing(border-box);
+
{
 +
    font-family: 'Kaushan Script';
 
}
 
}
  
body {
+
.timeline ol
font: {
+
{
size: 100%;
+
  list-style: none;
family: $primary-font;
+
}
+
color: $main-text;
+
background-color: $background;
+
 
}
 
}
  
a {
+
.timeline {
color: $link;
+
  position: relative;
text-decoration: none;
+
  overflow: auto;
font-family: $secondary-font;
+
 
}
 
}
 
+
.timeline:before {
img {
+
  content: '';
max-width: 100%;
+
  position: absolute;
 +
  height: 100%;
 +
  width: 5px;
 +
  background: #F16051;
 +
  left: 0;
 
}
 
}
 
+
.timeline h2 {
h1, h2 {
+
  color: #efe6c5;
font-family: $secondary-font;
+
  background: #F16051;
font-weight: bold;
+
  max-width: 6em;
 +
  margin: 0 auto 1em;
 +
  padding: 0.5em;
 +
  text-align: center;
 +
  position: relative;
 +
  clear: both;
 
}
 
}
 
+
.timeline ul {
/* --------------------------------
+
  list-style: none;
 
+
  padding: 0 0 0 1em;
Modules - reusable parts of our design
+
  z-index: 1;
 
+
-------------------------------- */
+
 
+
.cd-container { /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
+
width: 90%;
+
max-width: $L; // breakpoints inside partials > _layout.scss
+
margin: 0 auto;
+
 
+
&::after { /* clearfix */
+
content: '';
+
display: table;
+
clear: both;
+
}
+
 
}
 
}
 
+
.timeline ul > li {
/* --------------------------------
+
  background: #F16051;
 
+
  padding: 1em;
Main components
+
  margin-bottom: 1em;
 
+
  position: relative;
-------------------------------- */
+
 
+
header {
+
height: 200px;
+
line-height: 200px;
+
text-align: center;
+
background: $color-1;
+
 
+
h1 {
+
color: $color-3;
+
@include font-size(18px);
+
}
+
 
+
@include MQ(L) {
+
height: 300px;
+
line-height: 300px;
+
 
+
h1 {
+
@include font-size(24px);
+
}
+
}
+
 
}
 
}
 
+
.timeline ul > li:before {
#cd-timeline {
+
  content: '';
position: relative;
+
  width: 0;
padding: 2em 0;
+
  height: 0;
margin: {
+
  border-top: 1em solid #F16051;
top: 2em;
+
  border-left: 1em solid transparent;
bottom: 2em;
+
  position: absolute;
}
+
  left: -0.9em;
 
+
  top: 0;
&::before {
+
/* this is the vertical line */
+
content: '';
+
position: absolute;
+
top: 0;
+
left: 18px;
+
height: 100%;
+
width: 4px;
+
background: darken($background, 5%);
+
}
+
 
+
@include MQ(L) {
+
margin: {
+
top: 3em;
+
bottom: 3em;
+
}
+
 
+
&::before {
+
left: 50%;
+
margin-left: -2px;
+
}
+
}
+
 
}
 
}
 
+
.timeline h3 {
.cd-timeline-block {
+
  margin-top: 0;
position: relative;
+
margin: 2em 0;
+
@include clearfix;
+
 
+
&:first-child {
+
margin-top: 0;
+
}
+
 
+
&:last-child {
+
margin-bottom: 0;
+
}
+
 
+
@include MQ(L) {
+
margin: 4em 0;
+
 
+
&:first-child {
+
margin-top: 0;
+
}
+
 
+
&:last-child {
+
margin-bottom: 0;
+
}
+
}
+
 
}
 
}
  
.cd-timeline-img {
 
position: absolute;
 
top: 0;
 
left: 0;
 
width: 40px;
 
height: 40px;
 
border-radius: 50%;
 
box-shadow: 0 0 0 4px $color-3, inset 0 2px 0 rgba(#000, .08), 0 3px 0 4px rgba(#000, .05) ;
 
  
img {
+
@media screen and (min-width: 40em) {
display: block;
+
  .container {
width: 24px;
+
  }
height: 24px;
+
position: relative;
+
left: 50%;
+
top: 50%;
+
margin-left: -12px;
+
margin-top: -12px;
+
}
+
  
&.cd-picture {
+
  .timeline:before {
background: $color-4;
+
    left: 50%;
}
+
  }
 
+
  .timeline ul {
&.cd-movie {
+
    padding-left: 0;
background: $color-2;
+
    max-width: 700px;
}
+
    margin: 0 auto;
 
+
  }
&.cd-location {
+
  .timeline ul > li {
background: $color-5;
+
    width: 42%;
}
+
  }
 
+
  .timeline ul > li:nth-child(even) {
@include MQ(L) {
+
    float: right;
width: 60px;
+
    margin-top: 2em;
height: 60px;
+
  }
left: 50%;
+
  .timeline ul > li:nth-child(odd) {
margin-left: -30px;
+
    float: left;
 
+
  }
/* Force Hardware Acceleration in WebKit */
+
  .timeline ul > li:nth-child(odd):before {
-webkit-transform: translateZ(0);
+
    border-top: 1em solid #F16051;
-webkit-backface-visibility: hidden;
+
    border-right: 1em solid transparent;
 
+
    right: -0.9em;
.cssanimations &.is-hidden {
+
    left: auto;
visibility: hidden;
+
  }
}
+
  .timeline ul > li:nth-of-type(2n+1) {
 
+
    clear: both;
.cssanimations &.bounce-in {
+
  }
visibility: visible;
+
@include animation(cd-bounce-1 .6s);
+
}
+
}
+
}
+
 
+
@include keyframes(cd-bounce-1) {
+
0% {
+
opacity: 0;
+
@include transform(scale(.5));
+
}
+
 
+
60% {
+
opacity: 1;
+
@include transform(scale(1.2));
+
}
+
 
+
100% {
+
@include transform(scale(1));
+
}
+
}
+
 
+
.cd-timeline-content {
+
position: relative;
+
margin-left: 60px;
+
background: $color-3;
+
@include border-radius;
+
padding: 1em;
+
box-shadow: 0 3px 0 darken($background, 5%);
+
@include clearfix;
+
 
+
h2 {
+
color: $color-1;
+
}
+
 
+
p, .cd-read-more, .cd-date {
+
@include font-size(13px);
+
}
+
 
+
.cd-read-more, .cd-date {
+
display: inline-block;
+
}
+
 
+
p {
+
margin: 1em 0;
+
line-height: 1.6;
+
}
+
 
+
.cd-read-more {
+
float: right;
+
padding: .8em 1em;
+
background: $link;
+
color: $color-3;
+
@include border-radius;
+
 
+
.no-touch &:hover {
+
background-color: lighten($link, 5%);
+
}
+
}
+
 
+
.cd-date {
+
float: left;
+
padding: .8em 0;
+
opacity: .7;
+
}
+
 
+
&::before {
+
content: '';
+
position: absolute;
+
top: 16px;
+
right: 100%;
+
height: 0;
+
width: 0;
+
border: 7px solid transparent;
+
border-right: 7px solid $color-3;
+
}
+
 
+
@include MQ(M) {
+
h2 {
+
@include font-size(20px);
+
}
+
 
+
p {
+
@include font-size(16px);
+
}
+
 
+
.cd-read-more, .cd-date {
+
@include font-size(14px);
+
}
+
}
+
 
+
@include MQ(L) {
+
margin-left: 0;
+
padding: 1.6em;
+
width: 45%;
+
 
+
&::before {
+
top: 24px;
+
left: 100%;
+
border-color: transparent;
+
border-left-color: $color-3;
+
}
+
 
+
.cd-read-more {
+
float: left;
+
}
+
 
+
.cd-date {
+
position: absolute;
+
width: 100%;
+
left: 122%;
+
top: 6px;
+
@include font-size(16px);
+
}
+
 
+
.cd-timeline-block:nth-child(even) & {
+
float: right;
+
 
+
&::before {
+
top: 24px;
+
left: auto;
+
right: 100%;
+
border-color: transparent;
+
border-right-color: $color-3;
+
}
+
 
+
.cd-read-more {
+
float: right;
+
}
+
 
+
.cd-date {
+
left: auto;
+
right: 122%;
+
text-align: right;
+
}
+
}
+
 
+
.cssanimations &.is-hidden {
+
visibility: hidden;
+
}
+
 
+
.cssanimations &.bounce-in {
+
visibility: visible;
+
@include animation(cd-bounce-2 .6s);
+
}
+
}
+
}
+
 
+
@include MQ(L) {
+
/* inverse bounce effect on even content blocks */
+
.cssanimations .cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in {
+
@include animation(cd-bounce-2-inverse .6s);
+
}
+
}
+
 
+
@include keyframes(cd-bounce-2) {
+
0% {
+
opacity: 0;
+
@include transform(translateX(-100px));
+
}
+
 
+
60% {
+
opacity: 1;
+
@include transform(translateX(20px));
+
}
+
 
+
100% {
+
@include transform(translateX(0));
+
}
+
}
+
 
+
@include keyframes(cd-bounce-2-inverse) {
+
0% {
+
opacity: 0;
+
@include transform(translateX(100px));
+
}
+
 
+
60% {
+
opacity: 1;
+
@include transform(translateX(-20px));
+
}
+
 
+
100% {
+
@include transform(translateX(0));
+
}
+
 
}
 
}
  
 +
.st { text-decoration: line-through; }
 +
sup { margin-right: 0.5em; }
 
</style>
 
</style>
 
 
<body>
 
<body>
<header>
 
<h1>Responsive Vertical Timeline</h1>
 
</header>
 
 
<section id="cd-timeline" class="cd-container">
 
<div class="cd-timeline-block">
 
<div class="cd-timeline-img cd-picture">
 
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-picture.svg" alt="Picture">
 
</div> <!-- cd-timeline-img -->
 
 
<div class="cd-timeline-content">
 
<h2>Title of section 1</h2>
 
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iusto, optio, dolorum provident rerum aut hic quasi placeat iure tempora laudantium ipsa ad debitis unde? Iste voluptatibus minus veritatis qui ut.</p>
 
<a href="#0" class="cd-read-more">Read more</a>
 
<span class="cd-date">Jan 14</span>
 
</div> <!-- cd-timeline-content -->
 
</div> <!-- cd-timeline-block -->
 
 
<div class="cd-timeline-block">
 
<div class="cd-timeline-img cd-movie">
 
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-movie.svg" alt="Movie">
 
</div> <!-- cd-timeline-img -->
 
 
<div class="cd-timeline-content">
 
<h2>Title of section 2</h2>
 
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iusto, optio, dolorum provident rerum aut hic quasi placeat iure tempora laudantium ipsa ad debitis unde?</p>
 
<a href="#0" class="cd-read-more">Read more</a>
 
<span class="cd-date">Jan 18</span>
 
</div> <!-- cd-timeline-content -->
 
</div> <!-- cd-timeline-block -->
 
 
<div class="cd-timeline-block">
 
<div class="cd-timeline-img cd-picture">
 
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-picture.svg" alt="Picture">
 
</div> <!-- cd-timeline-img -->
 
 
<div class="cd-timeline-content">
 
<h2>Title of section 3</h2>
 
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Excepturi, obcaecati, quisquam id molestias eaque asperiores voluptatibus cupiditate error assumenda delectus odit similique earum voluptatem doloremque dolorem ipsam quae rerum quis. Odit, itaque, deserunt corporis vero ipsum nisi eius odio natus ullam provident pariatur temporibus quia eos repellat consequuntur perferendis enim amet quae quasi repudiandae sed quod veniam dolore possimus rem voluptatum eveniet eligendi quis fugiat aliquam sunt similique aut adipisci.</p>
 
<a href="#0" class="cd-read-more">Read more</a>
 
<span class="cd-date">Jan 24</span>
 
</div> <!-- cd-timeline-content -->
 
</div> <!-- cd-timeline-block -->
 
 
<div class="cd-timeline-block">
 
<div class="cd-timeline-img cd-location">
 
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-location.svg" alt="Location">
 
</div> <!-- cd-timeline-img -->
 
 
<div class="cd-timeline-content">
 
<h2>Title of section 4</h2>
 
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iusto, optio, dolorum provident rerum aut hic quasi placeat iure tempora laudantium ipsa ad debitis unde? Iste voluptatibus minus veritatis qui ut.</p>
 
<a href="#0" class="cd-read-more">Read more</a>
 
<span class="cd-date">Feb 14</span>
 
</div> <!-- cd-timeline-content -->
 
</div> <!-- cd-timeline-block -->
 
 
<div class="cd-timeline-block">
 
<div class="cd-timeline-img cd-location">
 
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-location.svg" alt="Location">
 
</div> <!-- cd-timeline-img -->
 
 
<div class="cd-timeline-content">
 
<h2>Title of section 5</h2>
 
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iusto, optio, dolorum provident rerum.</p>
 
<a href="#0" class="cd-read-more">Read more</a>
 
<span class="cd-date">Feb 18</span>
 
</div> <!-- cd-timeline-content -->
 
</div> <!-- cd-timeline-block -->
 
 
<div class="cd-timeline-block">
 
<div class="cd-timeline-img cd-movie">
 
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-movie.svg" alt="Movie">
 
</div> <!-- cd-timeline-img -->
 
 
<div class="cd-timeline-content">
 
<h2>Final Section</h2>
 
<p>This is the content of the last section</p>
 
<span class="cd-date">Feb 26</span>
 
</div> <!-- cd-timeline-content -->
 
</div> <!-- cd-timeline-block -->
 
</section> <!-- cd-timeline -->
 
 
</body>
 
</body>
 
</html>
 
</html>

Revision as of 01:22, 17 October 2016