-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathyaxis.html
More file actions
174 lines (140 loc) · 5.26 KB
/
yaxis.html
File metadata and controls
174 lines (140 loc) · 5.26 KB
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
<!doctype html>
<html>
<head>
<!--
The layout and styling of this page, and subsiquently the redesign of this site, are heavily influenced by
the design of the chartjs.org site. It's beauty through simplicity was too much to resist. I have made slight
changes so the styling of the site is more inline with the projects styling, but don't want to hide the fact
that the styling is taken basically directly from their css file with only minor changes.
The awesome javascript function that turns H1s and H2s into the navigation is their code as well.
I hope this is a compliment to the folks at chartjs.org as opposed to being "not cool"
-->
<title>Project Shapeoko</title>
<link href="shapeoko.css" rel="stylesheet" />
<link href='http://fonts.googleapis.com/css?family=Ubuntu:300,400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-11630357-11']);
_gaq.push(['_setDomainName', 'shapeoko.com']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<div class="header">
<div class="left">
<a href="http://docs.shapeoko.com"><span class="toplink">Shapeoko 2</span></a>
</div>
<div class="right">
<ul>
</ul>
</div>
</div>
<div id="wrapper">
<nav>
<dl>
<dt><a href='index.html'>Welcome!</a></dt>
<dt><a href='tips.html'>Pro Tips!</a></dt>
<dt><a href='software.html'>Software</a></dt>
<dt><a href='electronics.html'>Electronics</a></dt>
<dt><a href='wheels.html'>Wheels + Idlers</a></dt>
<dt><a href='carriages.html'>Carriages</a></dt>
<dt><a href='zaxis.html'>Z-Axis</a></dt>
<dt><a href='gantry.html'>Gantry</a></dt>
<dt><a href='yaxis.html'>Y-Axis</a></dt>
<dt><a href='workarea.html'>Work Area</a></dt>
<dt><a href='wiring.html'>Electrical Wiring</a></dt>
<dt><a href='helloworld.html'>Hello, World</a></dt>
<dt><a href='firstjob.html'>First Job</a></dt>
</dl>
</nav>
<div id="contentWrapper">
<article id="yaxis"><h1>End Plates</h1>
<h2>Y-Axis Rail Assembly (PS20026)</h2>
<h3>Overview</h3>
<p><img alt="exploded view of End Plates" src="content/tPictures/PS20026_2.png">
<img alt="" src="content/tPictures/so_y_axis_rail_2.jpg">
<img alt="" src="content/tPictures/so_y_axis_rail_parts_2.jpg"></p>
<p><strong>Note:</strong> Although the assembly photo shows both end plates attached, only attach one to each Y-axis rail at this time.</p>
<h3>Requirements</h3>
<h4>Parts</h4>
<ul>
<li>End Plate (12ga) 26028-01</li>
<li>M5 x 12mm, BHCS 25286-02 </li>
<li>Flat Washer, M5 25287-02 </li>
<li>Belt Clip Assembly PS20020 </li>
<li>X/Y Axis Rail - MakerSlide Extrusion - 500mm PS20008</li>
</ul>
<p>Attach one end plate to each piece of MakerSlide using the 12mm M5 bolts and an M5 washer.</p>
<p>Do not attach the second end plate, that will be done in the next step.</p></article><script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="jquery.simplemodal.1.4.4.min.js"></script>
<script src="prettify.js"></script>
<script>
/*
$(document).ready(function(){
var $nav = $("nav dl");
$("article").each(function(){
var $el = $(this);
var $h1 = $el.find("h1");
var sectionTitle = $h1.html();
var articleId = $el.attr("id");
var $dt = $("<dt><a href=\"#"+articleId +"\">"+sectionTitle+"</a></dt>");
$dt.find("a").on("click",function(e){
e.preventDefault();
$('html,body').animate({scrollTop: $h1.offset().top},400);
});
$nav.append($dt);
var $subtitles = $el.find("h2");
$subtitles.each(function(){
var $h2 = $(this);
var title = $h2.text();
var newID = articleId + "-" +camelCase(title);
$h2.attr("id",newID);
var $dd = $("<dd><a href=\"#" +newID + "\">" + title + "</a></dd>");
$dd.find("a").on("click",function(e){
e.preventDefault();
$('html,body').animate({scrollTop: $h2.offset().top},200);
})
$nav.append($dd);
});
var $articles = $el.find("article");
});
$("canvas").each(function(){
var $canvas = $(this);
var ctx = this.getContext("2d");
eval($("code[data-for='" + $canvas.attr("id") + "']").text());
var evalString = "new Chart(ctx)." + $canvas.data("type") + "(data);";
eval(evalString);
});
prettyPrint();
function camelCase(str){
var splitString = str.split(" ");
var returnedCamel = splitString[0].toLowerCase();
for (var i=1; i<splitString.length; i++){
returnedCamel += splitString[i].charAt(0).toUpperCase() + splitString[i].substring(1).toLowerCase();
}
return returnedCamel;
}
});
*/
</script>
<script>
/*
$(document).ready(function(){
$(".photo").click(function(e) {
var hrefval= $(this).attr("src");
$.modal('<img src=" ' + hrefval + '">', {
containerCss: { height:'auto',width:'auto'},
overlayClose: true
});
e.preventDefault();
});
});
/*
</script>
</body>
</html>