From 8f7df7550a99956eac388272d4b797f4bb593fd7 Mon Sep 17 00:00:00 2001 From: Jinwei Zhao Date: Sun, 22 May 2016 18:31:41 +0800 Subject: remove about & update --- js/portfolio.js | 58 +++++++++++++++++++++++++++++++-------------------------- 1 file changed, 32 insertions(+), 26 deletions(-) (limited to 'js/portfolio.js') diff --git a/js/portfolio.js b/js/portfolio.js index 9e3f76f..f1ab1fb 100755 --- a/js/portfolio.js +++ b/js/portfolio.js @@ -1,26 +1,32 @@ -var sleep = function(ms, callback) { - setTimeout(function() { - callback() - }, ms) - }, - favthings = ["raspberrypi", "Linux", "Let's Encrypt", "Ingress"], - removeClass = function(el, className) { - el.classList ? el.classList.remove(className) : el.className = el.className.replace(new RegExp("(^|\\b)" + className.split(" ").join("|") + "(\\b|$)", "gi"), " ") - }, - addClass = function(el, className) { - el.classList ? el.classList.add(className) : el.className += " " + className - }, - i = 0, - nextThing = function(thing) { - i < favthings.length - 1 ? i++ : i = 0, removeClass(thing, "slideInDown"), addClass(thing, "slideOutUp"), sleep(700, function() { - thing.innerHTML = favthings[i], removeClass(thing, "slideOutUp"), addClass(thing, "slideInDown") - }) - }; -document.addEventListener("DOMContentLoaded", function() { - var thing = document.querySelectorAll(".favthing")[0]; - setTimeout(function() { - nextThing(thing) - }, 1e3), setInterval(function() { - nextThing(thing) - }, 4e3) -}); +var sleep = function(ms, callback) { + setTimeout(function() { + callback() + }, ms) + }, + favthings = ["raspberrypi", "Linux", "Let's Encrypt", "Ingress", "Computer Vision", +"Machine Learning"], + removeClass = function(el, className) { + el.classList ? el.classList.remove(className) : el.className = +el.className.replace(new RegExp("(^|\\b)" + className.split(" ").join("|") + "(\\b|$)", +"gi"), " ") + }, + addClass = function(el, className) { + el.classList ? el.classList.add(className) : el.className += " " + className + }, + i = 0, + nextThing = function(thing) { + i < favthings.length - 1 ? i++ : i = 0, removeClass(thing, "slideInDown"), +addClass(thing, "slideOutUp"), sleep(700, function() { + thing.innerHTML = favthings[i], removeClass(thing, "slideOutUp"), +addClass(thing, "slideInDown") + }) + }; +document.addEventListener("DOMContentLoaded", function() { + var thing = document.querySelectorAll(".favthing")[0]; + setTimeout(function() { + nextThing(thing) + }, 1e3), setInterval(function() { + nextThing(thing) + }, 4e3) +}); + -- cgit v1.2.3