-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripts.js
94 lines (91 loc) · 4.74 KB
/
scripts.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
jQuery(function(){
$('.main-image').hover(
function(){this.src = this.src.replace('_old','_new');
$version = 2;
$('div.main-image-wrapper').removeClass('old-image');
$('.caption p').show();
},
function(){this.src = this.src.replace('_new','_old');
$version = 1;
$('div.main-image-wrapper').addClass('old-image');
//$('.caption p').text('');
$('.caption p').hide();
});
});
jQuery(function(){
$('.thumb').click(function() {
$('.main-image').attr('src', $(this).attr('src'));
});
});
jQuery(function(){
$('.main-image').hover(
function(){('.img1 p').text('7/8/13 "Gasp, Steph is wearing a dress and heels"');
});
});
jQuery(function(){
$('.img1').click(function() {
$('.description p').text('Waiting for a train (Toronto GO / San Francisco BART) in both images. Face selfies are conspicuous, but pointing the camera down affords some brief entertainment.');
$('.pic-title').text('legs.jpg');
$('.caption p').text('TODO');
});
$('.img2').click(function() {
$('.description p').text('Nine years apart: profile portraits of two significant others in very different environments.');
$('.pic-title').text('boyfriend.jpg');
$('.caption p').text('12/13/14');
});
$('.img3').click(function() {
$('.description p').text('Technology conferences and mobile devices go hand-in-hand — recording the speakers, the content, the individual experience.');
$('.pic-title').text('conf.jpg');
$('.caption p').text('2/5/14 "#bitcoin panel at moneyandtech.com launch party"');
});
$('.img4').click(function() {
$('.description p').text('These images were both taken on emotionally charged days — the former during a breakup in my early 20s, and the latter on the day of separation from my husband.');
$('.pic-title').text('ground.jpg');
$('.caption p').text('7/22/13 "My new room"');
});
$('.img5').click(function() {
$('.description p').text('Many early (and current) mobile images involve travel, and this serves as an example of broadcasting a visual status update to a social network.');
$('.pic-title').text('sign.jpg');
$('.caption p').text('10/21/13 "Ew. Glad mine is on time. Charlotte then Asheville!"');
});
$('.img6').click(function() {
$('.description p').text('These images share both subject matter and composition. The selective focus in the Instagram image directs the viewer\'s attention, an effect prevalent in modern mobile image apps.');
$('.pic-title').text('receipt.jpg');
$('.caption p').text('12/13/14 "#poutine #canada"');
});
$('.img7').click(function() {
$('.description p').text('Strappy sandals while waiting for transit. Another moment of killing time, and another moment to show off footwear.');
$('.pic-title').text('strappyshoes.jpg');
$('.caption p').text('7/10/13 "~ When I\'m feeling blue, all I have to do, is put on sexy shoes, then I\'m not so blue ~"');
});
$('.img8').click(function() {
$('.description p').text('There were very few food and drink shots in the earlier set of images, perhaps due to social norms of mealtime photography at the time.');
$('.pic-title').text('takeout.jpg');
$('.caption p').text('4/30/14 "This salad must\'ve weighed two pounds. Yay leftovers!"');
});
$('.img9').click(function() {
$('.description p').text('Two visits to New York City. Two tongue-in-cheek shots of the \'gorgeous\' hotel room view.');
$('.pic-title').text('nyc.jpg');
$('.caption p').text('4/7/14');
});
$('.img10').click(function() {
$('.description p').text('Both shots were taken during moves — Canada to the US (cat included), and the latter to a new apartment in San Francisco.');
$('.pic-title').text('cart.jpg');
$('.caption p').text('7/22/13 "Oh the madness #ikea"');
});
$('.img11').click(function() {
$('.description p').text('The pain of losing my piano, twice, for years at a time.');
$('.pic-title').text('piano.jpg');
$('.caption p').text('7/20/13 "My baby in its new home for now"');
});
$('.img12').click(function() {
$('.description p').text('Unexpected leg room is always worth posting about.');
$('.pic-title').text('planelegs.jpg');
$('.caption p').text('10/21/13 "Yeah, baby!"');
});
$('.img13').click(function() {
$('.description p').text('The image quality difference is impressive. Also, hashtags — non-existent in 2004.');
$('.pic-title').text('nails.jpg');
$('.caption p').text('"Blue and blue sparkle gel! #manicure #nails #manipedi"');
});
});