Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
x3domlet
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Elphel
x3domlet
Commits
a3c408ea
Commit
a3c408ea
authored
Sep 25, 2017
by
Oleg Dzhimiev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
help link for index page
parent
4127549c
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
67 additions
and
1 deletion
+67
-1
index.html
index.html
+5
-0
index.css
js/index.css
+46
-1
index.js
js/index.js
+16
-0
No files found.
index.html
View file @
a3c408ea
...
@@ -27,5 +27,10 @@
...
@@ -27,5 +27,10 @@
</table>
</table>
</div>
</div>
<div
id=
"leaflet_map"
></div>
<div
id=
"leaflet_map"
></div>
<div
id=
'help_button'
title=
'Help'
>
?
</div>
<div
id=
'help_content'
>
<h2>
Help
</h2>
Please, follow
<a
href=
'https://blog.elphel.com/2017/09/long-range-multi-view-stereo-camera-with-4-sensors/#Scene_viewer'
>
this link
</a>
.
</div>
</body>
</body>
</html>
</html>
js/index.css
View file @
a3c408ea
...
@@ -68,3 +68,48 @@ img{
...
@@ -68,3 +68,48 @@ img{
border-spacing
:
0px
;
border-spacing
:
0px
;
display
:
block
;
display
:
block
;
}
}
#help_button
{
position
:
absolute
;
top
:
2px
;
left
:
208px
;
z-index
:
500
;
cursor
:
pointer
;
background
:
white
;
border
:
0px
solid
white
;
border-radius
:
2px
;
font-size
:
20px
;
font-weight
:
bold
;
padding
:
5px
10px
;
margin-bottom
:
2px
;
}
#help_button
:focus
{
outline
:
0
;}
#help_button
:hover
{
background
:
rgba
(
240
,
240
,
240
,
1
);
}
#help_content
{
font-family
:
"Helvetica Neue"
,
Helvetica
,
Arial
,
sans-serif
;
position
:
absolute
;
top
:
0px
;
left
:
0px
;
width
:
100%
;
height
:
100%
;
border-radius
:
2px
;
border
:
0px
solid
gray
;
color
:
white
;
font-size
:
16px
;
padding
:
20px
100px
;
background
:
rgba
(
50
,
50
,
50
,
0.9
);
overflow
:
auto
;
display
:
none
;
z-index
:
10000
;
}
#help_content
a
{
color
:
rgba
(
100
,
190
,
250
,
1
);
}
js/index.js
View file @
a3c408ea
...
@@ -12,6 +12,7 @@ $(function(){
...
@@ -12,6 +12,7 @@ $(function(){
//init();
//init();
parseURL
();
parseURL
();
init_maps
();
init_maps
();
init_help
();
var
url
=
'list.php?rating='
+
SETTINGS
.
rating
;
var
url
=
'list.php?rating='
+
SETTINGS
.
rating
;
...
@@ -434,6 +435,21 @@ function init_maps(){
...
@@ -434,6 +435,21 @@ function init_maps(){
}
}
function
init_help
(){
var
help
=
$
(
"#help_content"
);
help
.
hide
();
$
(
"#help_button"
).
on
(
'click'
,
function
(){
help
.
show
();
});
help
.
on
(
'click'
,
function
(){
help
.
hide
();
});
}
function
wheelEvent_list
(
event
){
function
wheelEvent_list
(
event
){
shiftKey
=
(
event
.
shiftKey
==
1
);
shiftKey
=
(
event
.
shiftKey
==
1
);
var
delta
=
0
;
var
delta
=
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment