Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
douban-api-proxy
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
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
captainwong
douban-api-proxy
Commits
4392fec7
Commit
4392fec7
authored
May 26, 2021
by
Ozzie Isaacs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added fullscreen cover viewer
parent
a47d6cd9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
55 additions
and
2 deletions
+55
-2
style.css
cps/static/css/style.css
+6
-0
fullscreen.js
cps/static/js/fullscreen.js
+45
-0
book_edit.html
cps/templates/book_edit.html
+2
-1
detail.html
cps/templates/detail.html
+2
-1
No files found.
cps/static/css/style.css
View file @
4392fec7
...
@@ -417,3 +417,9 @@ div.log {
...
@@ -417,3 +417,9 @@ div.log {
white-space
:
nowrap
;
white-space
:
nowrap
;
padding
:
0.5em
;
padding
:
0.5em
;
}
}
#detailcover
{
cursor
:
zoom-in
;
}
#detailcover
:-webkit-full-screen
{
cursor
:
zoom-out
;
}
#detailcover
:-moz-full-screen
{
cursor
:
zoom-out
;
}
#detailcover
:-ms-fullscreen
{
cursor
:
zoom-out
;
}
#detailcover
:fullscreen
{
cursor
:
zoom-out
;
}
cps/static/js/fullscreen.js
0 → 100644
View file @
4392fec7
/* This file is part of the Calibre-Web (https://github.com/janeczku/calibre-web)
* Copyright (C) 2021 OzzieIsaacs
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
function
toggleFullscreen
(
elem
)
{
if
(
!
document
.
fullscreenElement
&&
!
document
.
mozFullScreenElement
&&
!
document
.
webkitFullscreenElement
&&
!
document
.
msFullscreenElement
)
{
if
(
elem
.
requestFullscreen
)
{
elem
.
requestFullscreen
();
}
else
if
(
elem
.
msRequestFullscreen
)
{
elem
.
msRequestFullscreen
();
}
else
if
(
elem
.
mozRequestFullScreen
)
{
elem
.
mozRequestFullScreen
();
}
else
if
(
elem
.
webkitRequestFullscreen
)
{
elem
.
webkitRequestFullscreen
(
Element
.
ALLOW_KEYBOARD_INPUT
);
}
}
else
{
if
(
document
.
exitFullscreen
)
{
document
.
exitFullscreen
();
}
else
if
(
document
.
msExitFullscreen
)
{
document
.
msExitFullscreen
();
}
else
if
(
document
.
mozCancelFullScreen
)
{
document
.
mozCancelFullScreen
();
}
else
if
(
document
.
webkitExitFullscreen
)
{
document
.
webkitExitFullscreen
();
}
}
}
$
(
"#detailcover"
).
click
(
function
()
{
toggleFullscreen
(
this
);
});
cps/templates/book_edit.html
View file @
4392fec7
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
{% if book %}
{% if book %}
<div
class=
"col-sm-3 col-lg-3 col-xs-12"
>
<div
class=
"col-sm-3 col-lg-3 col-xs-12"
>
<div
class=
"cover"
>
<div
class=
"cover"
>
<img
src=
"{{ url_for('web.get_cover', book_id=book.id, edit=1|uuidfilter) }}"
alt=
"{{ book.title }}"
/>
<img
id=
"detailcover"
src=
"{{ url_for('web.get_cover', book_id=book.id, edit=1|uuidfilter) }}"
alt=
"{{ book.title }}"
/>
</div>
</div>
{% if g.user.role_delete_books() %}
{% if g.user.role_delete_books() %}
<div
class=
"text-center"
>
<div
class=
"text-center"
>
...
@@ -327,6 +327,7 @@
...
@@ -327,6 +327,7 @@
<script
src=
"{{ url_for('static', filename='js/libs/bootstrap-datepicker/locales/bootstrap-datepicker.' + g.user.locale + '.min.js') }}"
charset=
"UTF-8"
></script>
<script
src=
"{{ url_for('static', filename='js/libs/bootstrap-datepicker/locales/bootstrap-datepicker.' + g.user.locale + '.min.js') }}"
charset=
"UTF-8"
></script>
{% endif %}
{% endif %}
<script
src=
"{{ url_for('static', filename='js/edit_books.js') }}"
></script>
<script
src=
"{{ url_for('static', filename='js/edit_books.js') }}"
></script>
<script
src=
"{{ url_for('static', filename='js/fullscreen.js') }}"
></script>
{% endblock %}
{% endblock %}
{% block header %}
{% block header %}
<meta
name=
"referrer"
content=
"never"
>
<meta
name=
"referrer"
content=
"never"
>
...
...
cps/templates/detail.html
View file @
4392fec7
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
<div
class=
"row"
>
<div
class=
"row"
>
<div
class=
"col-sm-3 col-lg-3 col-xs-5"
>
<div
class=
"col-sm-3 col-lg-3 col-xs-5"
>
<div
class=
"cover"
>
<div
class=
"cover"
>
<img
src=
"{{ url_for('web.get_cover', book_id=entry.id, edit=1|uuidfilter) }}"
alt=
"{{ entry.title }}"
/>
<img
id=
"detailcover"
src=
"{{ url_for('web.get_cover', book_id=entry.id, edit=1|uuidfilter) }}"
alt=
"{{ entry.title }}"
/>
</div>
</div>
</div>
</div>
<div
class=
"col-sm-9 col-lg-9 book-meta"
>
<div
class=
"col-sm-9 col-lg-9 book-meta"
>
...
@@ -316,4 +316,5 @@
...
@@ -316,4 +316,5 @@
<
/a
>
<
/a
>
</script>
</script>
<script
src=
"{{ url_for('static', filename='js/details.js') }}"
></script>
<script
src=
"{{ url_for('static', filename='js/details.js') }}"
></script>
<script
src=
"{{ url_for('static', filename='js/fullscreen.js') }}"
></script>
{% endblock %}
{% endblock %}
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