4
4
< meta charset ="utf-8 ">
5
5
< title > three.js / documentation</ title >
6
6
< meta name ="viewport " content ="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0 ">
7
- < link type =" text/css " rel =" stylesheet " href ="index.css " >
8
- < link rel ="shortcut icon " href ="../favicon.ico " / >
7
+ < link rel =" shortcut icon " href ="../files/favicon.ico " / >
8
+ < link rel ="stylesheet " type =" text/css " href ="../files/main.css " >
9
9
</ head >
10
10
< body >
11
11
12
12
< div id ="panel " class ="collapsed ">
13
13
14
- < h1 > < a href =" http://threejs.org " > three.js </ a > / docs </ h1 >
14
+ < div id =" header " >
15
15
16
- < a id ="expandButton " href ="# ">
17
- < span > </ span >
18
- < span > </ span >
19
- < span > </ span >
20
- </ a >
16
+ < h1 > < a href ="http://threejs.org "> three.js</ a > </ h1 >
21
17
22
- < div class ="filterBlock " >
23
- < input type ="text " id ="filterInput " placeholder ="Type to filter " autocorrect ="off " autocapitalize ="off " spellcheck ="false ">
24
- < a href ="# " id ="clearFilterButton "> x</ a >
25
- </ div >
18
+ < img id ="expandButton " src ="../files/ic_menu_black_24dp.svg ">
19
+
20
+ < div id ="sections ">
21
+ < span class ="selected "> docs</ span > < a href ="../examples "> examples</ a >
22
+ </ div >
23
+
24
+ < input type ="text " id ="filter " autocorrect ="off " autocapitalize ="off " spellcheck ="false ">
25
+
26
+ < select id ="language ">
27
+ < option value ="en "> en</ option >
28
+ < option value ="zh "> zh</ option >
29
+ </ select >
26
30
27
- < div style ="text-align:center ">
28
- < br />
29
- < a href ="javascript:setLanguage('en') "> en</ a > |
30
- < a href ="javascript:setLanguage('zh') "> zh</ a >
31
31
</ div >
32
32
33
33
< div id ="content "> </ div >
@@ -66,9 +66,18 @@ <h1><a href="http://threejs.org">three.js</a> / docs</h1>
66
66
67
67
//
68
68
69
+ var languageSelect = document . getElementById ( 'language' ) ;
70
+ languageSelect . value = language ;
71
+ languageSelect . addEventListener ( 'change' , function ( event ) {
72
+
73
+ setLanguage ( this . value ) ;
74
+
75
+ } ) ;
76
+
69
77
function setLanguage ( value ) {
70
78
71
79
language = value ;
80
+
72
81
createNavigation ( ) ;
73
82
updateFilter ( ) ;
74
83
autoChangeUrlLanguage ( language ) ;
@@ -77,9 +86,8 @@ <h1><a href="http://threejs.org">three.js</a> / docs</h1>
77
86
78
87
var panel = document . getElementById ( 'panel' ) ;
79
88
var content = document . getElementById ( 'content' ) ;
80
- var clearFilterButton = document . getElementById ( 'clearFilterButton' ) ;
81
89
var expandButton = document . getElementById ( 'expandButton' ) ;
82
- var filterInput = document . getElementById ( 'filterInput ' ) ;
90
+ var filterInput = document . getElementById ( 'filter ' ) ;
83
91
var iframe = document . querySelector ( 'iframe' ) ;
84
92
85
93
var pageProperties = { } ;
@@ -107,18 +115,6 @@ <h1><a href="http://threejs.org">three.js</a> / docs</h1>
107
115
108
116
} ;
109
117
110
-
111
- // Functionality for filter clear button
112
-
113
- clearFilterButton . onclick = function ( event ) {
114
-
115
- event . preventDefault ( ) ;
116
-
117
- filterInput . value = '' ;
118
- updateFilter ( ) ;
119
-
120
- } ;
121
-
122
118
// Activate content and title change on browser navigation
123
119
124
120
window . onpopstate = createNewIframe ;
0 commit comments