Created
May 4, 2018 09:31
-
-
Save edamamegreen/c85fcf5b63aa9509a65586beafd207ec to your computer and use it in GitHub Desktop.
iPhone 5 iOS 10*
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
iPhone 5 iOS 10* | |
Screen Off* | |
home button -> Notifications | |
top button -> Notifications | |
Locked | |
top button -> Screen Off | |
Notifications | |
home button -> Password Screen | |
swipe left-to-right -> Message Center | |
Message Center | |
home button -> Password Screen | |
swipe right-to-left -> Message Center | |
Password Screen | |
Camera | |
home button -> Notifications |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function create_src(active_state) { | |
var path = "http://www.nickivance.com/img/"; | |
var filetype = ".png"; | |
return path + active_state + filetype | |
} | |
function render(model){ | |
var active_state = model.active_states[0].name; | |
return $("img", {src: create_src(active_state)}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment