-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
254 lines (234 loc) · 8.94 KB
/
index.html
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Billy Wenner | Artist | Painter, Sculpter, Woodworker</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap-theme.min.css">
<link href='http://fonts.googleapis.com/css?family=Josefin+Slab:700italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="icon" type="image/x-icon" href="img/favicon.ico" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<!--SCROLLJACK-->
<script>
(function($) {
var types = ['DOMMouseScroll', 'mousewheel'];
if ($.event.fixHooks) {
for ( var i=types.length; i; ) {
$.event.fixHooks[ types[--i] ] = $.event.mouseHooks;
}
}
$.event.special.mousewheel = {
setup: function() {
if ( this.addEventListener ) {
for ( var i=types.length; i; ) {
this.addEventListener( types[--i], handler, false );
}
} else {
this.onmousewheel = handler;
}
},
teardown: function() {
if ( this.removeEventListener ) {
for ( var i=types.length; i; ) {
this.removeEventListener( types[--i], handler, false );
}
} else {
this.onmousewheel = null;
}
}
};
$.fn.extend({
mousewheel: function(fn) {
return fn ? this.bind("mousewheel", fn) : this.trigger("mousewheel");
},
unmousewheel: function(fn) {
return this.unbind("mousewheel", fn);
}
});
function handler(event) {
var orgEvent = event || window.event, args = [].slice.call( arguments, 1 ), delta = 0, returnValue = true, deltaX = 0, deltaY = 0;
event = $.event.fix(orgEvent);
event.type = "mousewheel";
// Old school scrollwheel delta
if ( orgEvent.wheelDelta ) { delta = orgEvent.wheelDelta/120; }
if ( orgEvent.detail ) { delta = -orgEvent.detail/3; }
// New school multidimensional scroll (touchpads) deltas
deltaY = delta;
// Gecko
if ( orgEvent.axis !== undefined && orgEvent.axis === orgEvent.HORIZONTAL_AXIS ) {
deltaY = 0;
deltaX = -1*delta;
}
// Webkit
if ( orgEvent.wheelDeltaY !== undefined ) { deltaY = orgEvent.wheelDeltaY/120; }
if ( orgEvent.wheelDeltaX !== undefined ) { deltaX = -1*orgEvent.wheelDeltaX/120; }
// Add event and delta to the front of the arguments
args.unshift(event, delta, deltaX, deltaY);
return ($.event.dispatch || $.event.handle).apply(this, args);
}
})(jQuery);
</script>
<script>
$(function() {
if (parseInt($(window).width()) > 768)
$("#portfolio").mousewheel(function(event, delta) {
this.scrollLeft -= (delta * 30);
event.preventDefault();
});
});
</script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<style>
/* RENDERS BOOTSTRAP COL WORTHLESS BUT IS PERFECT FOR THIS INSTANCE */
#portfolio .row [class*="col-lg"], #portfolio .row [class*="col-md"], #portfolio .row [class*="col-sm"] {
width: auto;
float:none;
display:inline-block;}
#portfolio img{
margin-top: 5vh;
height: 90vh;}
#portfolio p{
color: #B5B5B5;
font-family: Helvetica, arial, sans-serif;
font-size: 13px;
line-height: 18px;
margin-top: 1vh;
height: 4vh;}
#portfolio {
height: 100vh;
overflow-x:scroll;
overflow-y:hidden;
white-space:nowrap;}
#portfolio h1{
font-size: 24px;
font-family: 'Josefin Slab', serif;
color: #aa9483;}
#portfolio h2{
font-size: 18px;
font-family: 'Josefin Slab', serif;
color: #aa9483;}
#portfolio .row .intro{
position: absolute;
z-index: 2;
vertical-align: top;
height: 100vh;
background-color: #000;
width: 20%;}
#portfolio .intro i{
color: #fff;}
#portfolio .intro a{
color: #454545;
font-family: Helvetica, arial, sans-serif;
font-size: 13px;
line-height: 18px;}
#portfolio .intro a:hover{
color: #aa9483;}
#portfolio .intro p{
white-space: normal;
color: #454545;
font-family: Helvetica, arial, sans-serif;
font-size: 13px;
line-height: 18px;
height: auto;
margin-top: auto;}
#portfolio .shim{
margin-left: 22%;}
#portfolio ul{
padding: 0;
list-style: none;}
@media (max-width: 768px) {
/* REVERSE BOOTSTRAP HACKS & EVERYTHING ELSE FOR MOBILE */
#portfolio .row [class*="col-lg"], #portfolio .row [class*="col-md"], #portfolio .row [class*="col-sm"] {
width: inherit;
float: left;
display: block;}
#portfolio .col-xs-12 {
width: 100% !important;}
#portfolio {
height: auto;
overflow: inherit;
white-space: inherit;}
#portfolio img{
width: 100%;
margin-top: 0;
height: auto;}
#portfolio .row .intro{
padding-bottom: 25px;
position: relative;
height: auto;
width: 100%;
margin-bottom: 20px;}
#portfolio .shim{
margin-left: 0;}
}
</style>
</head>
<body>
<div id="portfolio">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 col-md-2 intro">
<a href="index.html"><h1>Billy Wenner</h1></a>
<p><a href="tel:9202845834">920 . 284 . 5834</a><br />
<a href="mailto:billy@billywenner.com">billy@billywenner.com</a></p>
<p>If you are interested in a purchase, exhibition, or commission please <a href="mailto:billy@billywenner.com">contact me</a>.</p>
<h2>Medium</h2>
<ul>
<li><a href="drawing.html">Drawing</a></li>
<li><a href="painting.html">Painting</a></li>
<li><a href="printmaking.html">Printmaking</a></li>
<li><a href="sculpture.html">Sculpture</a></li>
</ul>
<h2>About</h2>
<ul>
<li><a href="stantement.html">Artist Statement</a></li>
<li><a href="stantement.html">Exhibitions</a></li>
<li><a href="http://www.greenbayprintshop.com/">Piss Poor Press</a></li>
</ul>
</div>
<div class="col-xs-12 col-md-3 shim">
<img src="img/billy-wenner-card-print.jpg" alt="" />
<p>Wish Bone</p>
</div>
<div class="col-xs-12 col-md-3">
<img src="img/billy-wenner-they-all-cant-be-winners.jpg" alt="They All Can't Be Winners oil canvas painting" />
<p>They All Can't Be Winners</p>
</div>
<div class="col-xs-12 col-md-3">
<img src="img/billy-wenner-watering-hol.jpg" alt="Watering Hole Green Bay oil canvas art painting bar scene" />
<p>The Watering Hole</p>
</div>
<div class="col-xs-12 col-md-3">
<img src="img/billy-wenner-3am.jpg" alt="Glass blown art piece title 3am on a custome furnished couch." />
<p>3am</p>
</div>
<div class="col-xs-12 col-md-3">
<img src="img/billy-wenner-dirty-word.jpg" alt="Woodcut relief carving print Dirty Word made at Tom Huck's Woodcut Bootcamp." />
<p>Dirty Word</p>
</div>
<div class="col-xs-12 col-md-3">
<img src="img/billy-wenner-soap-caddy.jpg" alt="Custom fine art Soap Caddy woodworking." />
<p>Soap Caddy</p>
</div>
<div class="col-xs-12 col-md-3">
<img src="img/billy-wenner-eigengrau.jpg" alt="Eigengrau oil painting made by Billy Wenner at UW-Green Bay" />
<p>Eigengrau</p>
</div>
<div class="col-xs-12 col-md-3">
<img src="img/billy-wenner-department-of-anxiety.jpg" alt="Oil canvas painting art Department of Aniexty." />
<p>Department of Aniexty</p>
</div>
</div>
</div>
</div>
</body>
</html>