Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
f069d5ec
Commit
f069d5ec
authored
Mar 18, 2015
by
Carlos Fenollosa
Committed by
Jean-Baptiste Kempf
Mar 20, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added forward and rewind (30s) buttons to mobile HTTP remote control
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
90fc0913
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
share/lua/http/css/mobile.css
share/lua/http/css/mobile.css
+6
-0
share/lua/http/mobile.html
share/lua/http/mobile.html
+10
-0
No files found.
share/lua/http/css/mobile.css
View file @
f069d5ec
...
...
@@ -105,6 +105,12 @@ body{
#buttonStop
{
background-position
:
-576px
0px
;
}
#buttonRewd
{
background-position
:
-528px
0px
;
}
#buttonFwrd
{
background-position
:
-96px
0px
;
}
.playing
{
background-position
:
-336px
0px
;
}
...
...
share/lua/http/mobile.html
View file @
f069d5ec
...
...
@@ -62,6 +62,14 @@
}
return
false
;
});
$
(
'
#buttonRewd
'
).
click
(
function
(){
sendCommand
({
'
command
'
:
'
seek
'
,
'
val
'
:
'
-30S
'
});
return
false
;
});
$
(
'
#buttonFwrd
'
).
click
(
function
(){
sendCommand
({
'
command
'
:
'
seek
'
,
'
val
'
:
'
+30S
'
});
return
false
;
});
})
</script>
</head>
...
...
@@ -74,8 +82,10 @@
<div
id=
"play_controls"
>
<div
id=
"buttons"
>
<div
id=
"buttonPrev"
class=
"button48 ui-corner-all"
title=
"Previous"
></div>
<div
id=
"buttonRewd"
class=
"button48 ui-corner-all"
title=
"Rewind"
></div>
<div
id=
"buttonPlay"
class=
"button48 ui-corner-all paused"
title=
"Play"
></div>
<div
id=
"buttonStop"
class=
"button48 ui-corner-all"
title=
"Stop"
></div>
<div
id=
"buttonFwrd"
class=
"button48 ui-corner-all"
title=
"Forward"
></div>
<div
id=
"buttonNext"
class=
"button48 ui-corner-all"
title=
"Next"
></div>
</div>
<div
id=
"seekSlider"
title=
"Seek Time"
style=
"font-size:15px;"
></div>
...
...
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