- Define and prioritize information and actions.
- Express sites information hierarchy for each element of the site. Focus on the most important user actions and pages.
- Homepage
- Member Profile
- Dashboard
- Word Market
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
require([ | |
"esri/map", | |
"esri/geometry/Polyline", | |
"esri/symbols/SimpleLineSymbol", | |
"esri/graphic", | |
"dojo/domReady!"], | |
function(Map, Polyline, SimpleLineSymbol, Graphic) { | |
window.map = new Map("mapDiv", { |
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
require([ | |
"esri/map", | |
"esri/request", | |
"esri/geometry/Point", | |
"esri/symbols/SimpleMarkerSymbol", | |
"esri/graphic", | |
"dojo/domReady!"], | |
function(Map, request, Point, SimpleMarkerSymbol, Graphic) { |
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
.terraformer { | |
color: rgba(38,122,64, 0.5); | |
} | |
.terraformer:after { | |
content: "terraformerfront"; | |
color: #000000; | |
opacity: 0.5; | |
margin-left: -1em; | |
} | |
.terraformer:before { |
[Intro Slide][00][x] This talk is Pixel Perfect Design for Mobile - presumably Mobile Web or Mobile Applications.
[Cow + @NikolasWise][00b][x] My name is Nikolas Wise. I'd like to briefly introduce myself and let you know the perspective I'm coming from before I launch into my talk.
I'm a designer with Esri Portland Research and Development. I work with a team of designers, some of you might be familiar with our work – our team is largely responsible for developers.arcgis.com. [Screenshot of Developers][01][x]
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
.directive('dngLineGraph', function(){ | |
return { | |
restrict: 'E', | |
template: '<div class="dng-line-graph" id="line-graph"></div>', | |
replace: true, | |
controller: function($scope, $element, $attrs) { | |
var svg = dimple.newSvg('#line-graph', '100%', '100%'); | |
d3.tsv($attrs.data, function (data) { | |
var chart = new dimple.chart(svg, data); |
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
<html> | |
<head> | |
</head> | |
<body> | |
<div id="map"></div> | |
</body> | |
</html> | |
body, html { |
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 md5cycle(x, k) { | |
var a = x[0], b = x[1], c = x[2], d = x[3]; | |
a = ff(a, b, c, d, k[0], 7, -680876936); | |
d = ff(d, a, b, c, k[1], 12, -389564586); | |
c = ff(c, d, a, b, k[2], 17, 606105819); | |
b = ff(b, c, d, a, k[3], 22, -1044525330); | |
a = ff(a, b, c, d, k[4], 7, -176418897); | |
d = ff(d, a, b, c, k[5], 12, 1200080426); | |
c = ff(c, d, a, b, k[6], 17, -1473231341); |
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
[ | |
{ | |
"x": 0, | |
"y": 12, | |
"for": "Foo" | |
}, | |
{ | |
"x": 1, | |
"y": 24, | |
"for": "Foo" |
OlderNewer