Skip to content

Instantly share code, notes, and snippets.

@ugiacoman
Created February 13, 2015 18:37

Revisions

  1. ugiacoman created this gist Feb 13, 2015.
    143 changes: 143 additions & 0 deletions index.html
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,143 @@
    <!DOCTYPE html>
    <html>
    <head>
    <title>Foo</title>
    <meta charset='utf-8' />
    <meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' />
    <style type='text/css'>
    body {
    font-family: 'Helvetica';
    letter-spacing:-5px;
    background:#000;
    background-size:100%;
    color:#fff;
    margin:0;
    padding:0;
    font-weight:bold;
    }

    h1, h2, h3, p {
    margin:0;
    }

    em, a {
    font-style:normal;
    color:#8dbd0c;
    }

    a {
    background: #34d0e7;
    color:#000;
    text-decoration:none;
    }

    img {
    width:100%;
    }

    div {
    cursor:pointer;
    cursor:hand;
    position:absolute;
    top:0;
    left:0;
    }
    li {
    margin-left: 10%;
    }

    </style>
    <script type='text/javascript'>
    window.onload = function() {
    var s = document.getElementsByTagName('div'), cur = 0, ti;
    if (!s) return;
    function go(n) {
    cur = n;
    var i = 1e3, e = s[n], t;
    document.body.className = e.dataset.bodyclass || '';
    for (var k = 0; k < s.length; k++) s[k].style.display = 'none';
    e.style.display = 'inline';
    e.style.fontSize = i + 'px';
    if (e.firstChild && e.firstChild.nodeName === 'IMG') {
    document.body.style.backgroundImage = 'url(' + e.firstChild.src + ')';
    e.firstChild.style.display = 'none';
    if ('classList' in e) e.classList.add('imageText');
    } else {
    document.body.style.backgroundImage = '';
    document.body.style.backgroundColor = e.style.backgroundColor;
    }
    if (ti !== undefined) window.clearInterval(ti);
    t = parseInt(e.dataset.timeToNext || 0, 10);
    if (t > 0) ti = window.setTimeout(fwd, (t * 1000));
    while (
    e.offsetWidth > window.innerWidth ||
    e.offsetHeight > window.innerHeight) {
    e.style.fontSize = (i -= 2) + 'px';
    if (i < 0) break;
    }
    e.style.marginTop = ((window.innerHeight - e.offsetHeight) / 2) + 'px';
    if (window.location.hash !== n) window.location.hash = n;
    document.title = e.textContent || e.innerText;
    }
    document.onclick = function() { go(++cur % (s.length)); };
    function fwd() { go(Math.min(s.length - 1, ++cur)); }
    function rev() { go(Math.max(0, --cur)); }
    document.onkeydown = function(e) {
    if (e.which === 39 || e.which === 34 || e.which === 40) fwd();
    if (e.which === 37 || e.which === 33 || e.which === 38) rev();
    };
    document.ontouchstart = function(e) {
    var x0 = e.changedTouches[0].pageX;
    document.ontouchend = function(e) {
    var x1 = e.changedTouches[0].pageX;
    if (x1 - x0 < 0) fwd();
    if (x1 - x0 > 0) rev();
    };
    };
    function parse_hash() {
    return Math.max(Math.min(
    s.length - 1,
    parseInt(window.location.hash.substring(1), 10)), 0);
    }
    if (window.location.hash) cur = parse_hash() || cur;
    window.onhashchange = function() {
    var c = parse_hash();
    if (c !== cur) go(c);
    };
    go(cur);
    };
    </script></head><body>
    <div><h2 id="team-nancygrace">Team W-M1</h2>
    </div>
    <div><p><a href="">Joe</a>Hareesh<a href="">Matt</a>Ulises</p>
    </div>
    <div><p>CurbToMe</p>
    </div>
    <div><p>college students != capital($)</p>
    </div>
    <div><p>free stuff</p>
    </div>
    <div><p>free stuff + delivery to <a href="">me</a></p>
    </div>
    <div><p>so let me get this straight...</p>
    <ul>
    <li>free stuff</li>
    <li>delivery</li>
    <li><a href="">Profit?</a></li>
    </ul>
    </div>
    <div><p>yeah <a href="">baby</a> yeah</p>
    </div>
    <div><p><img src="http://content.finda.photo/startupstockphotos/79588987352.jpg" alt=""></p>
    </div>
    <div><p>Demo</p>
    </div>
    <div><p>Toolbox:</p>
    <ul>
    <li>HTML / CSS / JavaScript</li>
    <li>Python with Flask</li>
    <li>RSS Feed Scraper</li>
    <li>PostMates API</li>
    <li>Google Maps API</li>
    </ul>
    </div>
    46 changes: 46 additions & 0 deletions slide.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,46 @@
    ## Team NancyGrace

    ---

    [Joe]()Hareesh[Matt]()Ulises
    ---

    CurbToMe

    ---

    college students != capital($)

    ---

    free stuff

    ---

    free stuff + delivery to [me]()

    ---

    so let me get this straight...
    * free stuff
    * delivery
    * [Profit?]()
    ---

    yeah [baby]() yeah

    ---

    ![](http://content.finda.photo/startupstockphotos/79588987352.jpg)
    ---
    Demo
    ---

    Toolbox:
    * HTML / CSS / JavaScript
    * Python with Flask
    * RSS Feed Scraper
    * PostMates API
    * Google Maps API

    ---