#UX Training
###UX
- UX Magazine
- [Effectively Planning UX Design Projects](Effectively Planning UX Design Projects)
- What is User Experience Design
- Researchers.io
- Google Design
- Bad UX
#UX Training
###UX
##HTML, CSS & JavaScript
##Setting up Selenium Webdriver & Nodejs
//More API documentation here: https://helpx.adobe.com/captivate/using/common-js-interface.html | |
//You'll want to have this AFTER the captivate file is initialized (e.g. after cpInit() is called) | |
if(window.cpAPIInterface && window.cpAPIEventEmitter) | |
{ | |
//add a listener to for pause event | |
window.cpAPIEventEmitter.addEventListener("CPAPI_MOVIEPAUSE", function(e){ | |
console.log("captivate timeline paused"); | |
}); | |
.navbar-default { | |
background-color: #FFA24F; | |
} | |
.navbar-default .navbar-nav>li>a { | |
color: #3B406B; | |
background-color: #D7D456; | |
} | |
.navbar-default .navbar-nav>.active>a, |
#Your Current seed.rb code that creates books (the manual way): | |
Book.create("title" => "A Brief History of Time", "author" => "Stephen Hawking") | |
Book.create("title" => "Alice in Wonderland", "author" => "Lewis Carroll") | |
Book.create("title" => "The Lord Of The Rings", "author" => "J.R.R. Tolkien") | |
Book.create("title" => "The Hobbit", "author" => "J.R.R. Tolkien") | |
# Firstly, save each tab as a CSV file (a comman separate file) | |
# To save as a CSV, just go to File > Download As > CSV (for each tab) | |
# You could put them in a directory on your server | |
# Then you could do something like this (this one is for the book data): |