Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
elphel-web-393
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Elphel
elphel-web-393
Commits
9353c3a3
Commit
9353c3a3
authored
Apr 04, 2018
by
Oleg Dzhimiev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jp4 preview for humans
parent
0e3f1b4c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
4 deletions
+28
-4
index.php
src/index/index.php
+28
-4
No files found.
src/index/index.php
View file @
9353c3a3
...
...
@@ -53,8 +53,13 @@
* for the JavaScript code in this page.
*/
</script>
<script
type=
'text/javascript'
src=
'
../
js/jquery-3.1.1.js'
></script>
<script
type=
'text/javascript'
src=
'js/jquery-3.1.1.js'
></script>
<!--<script type='text/javascript' src='../js/bootstrap/js/bootstrap.js'></script>-->
<script
src=
"js/elphel.js"
></script>
<script
src=
"js/jcanvas.js"
></script>
<script
src=
"js/exif.js"
></script>
<script
src=
"js/jquery-jp4.js"
></script>
<link
rel=
"stylesheet"
href=
"js/bootstrap/css/bootstrap.css"
>
<style>
.port_window
{
...
...
@@ -66,6 +71,11 @@
border
:
1px
solid
rgba
(
210
,
210
,
210
,
1
);
}
.port_preview
{
width
:
300px
;
height
:
224px
;
}
table
td
{
padding-right
:
10px
;
}
...
...
@@ -101,7 +111,8 @@
$table_contents
.=
"<td>"
;
$table_contents
.=
"<div class='port_window img_window'>"
;
$table_contents
.=
"<div><a href=
\"
$href1
\"
><img class='img_window' src='
$href1
' style='width:300px'/></a></div>"
;
//$table_contents .= "<div><a href=\"$href1\"><img class='img_window' src='$href1' style='width:300px'/></a></div>";
$table_contents
.=
"<div><a href=
\"
$href1
\"
><div index='
$i
' class='port_preview'></div></a></div>"
;
$table_contents
.=
"<div style='text-align:center;'>port
$i
: <a title='single image' href='
$href1
'>bimg</a>, <a title='multi-part image stream (M-JPEG)' href='
$href2
'>mimg</a></div>"
;
$table_contents
.=
"</div>"
;
$table_contents
.=
"</td>"
;
...
...
@@ -149,6 +160,18 @@
</div>
<script>
$
(
function
(){
init_awb_toggle
();
init_jp4_previews
();
});
function
init_jp4_previews
(){
$
(
'.port_preview'
).
each
(
function
(){
index
=
parseInt
(
$
(
this
).
attr
(
"index"
));
$
(
this
).
jp4
({
ip
:
"127.0.0.1"
,
port
:
2323
+
index
,
width
:
300
,
fast
:
true
,
lowres
:
4
});
});
}
function
init_awb_toggle
(){
$
(
'.btn-toggle'
).
click
(
function
()
{
if
(
$
(
this
).
find
(
'.btn.active'
).
html
()
==
"ON"
){
...
...
@@ -179,8 +202,9 @@ $(function(){
}
});
});
});
});
}
</script>
<body>
</html>
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