浏览代码

Merge pull request #793 from kvch/pics-modal

CSS modal window for image results
Adam Tauber 8 年前
父节点
当前提交
bff41987a4

+ 4
- 0
searx/static/plugins/js/infinite_scroll.js 查看文件

@@ -4,9 +4,13 @@ $(document).ready(function() {
4 4
         if ($(document).height() - win.height() == win.scrollTop()) {
5 5
             var formData = $('#pagination form:last').serialize();
6 6
             if (formData) {
7
+                var pageno = $('#pagination input[name=pageno]:last').attr('value');
7 8
                 $('#pagination').html('<div class="loading-spinner"></div>');
8 9
                 $.post('./', formData, function (data) {
10
+                    var lastImageHref = $('.result-images:last a').attr('href');
9 11
                     var body = $(data);
12
+                    $('a[href^="#open-modal"]:last').attr('href', '#open-modal-1-' + pageno);
13
+                    body.find('.modal-image a:first').attr('href', lastImageHref);
10 14
                     $('#pagination').remove();
11 15
                     $('#main_results').append('<hr/>');
12 16
                     $('#main_results').append(body.find('.result'));

+ 1
- 1
searx/static/themes/oscar/css/logicodev.min.css
文件差异内容过多而无法显示
查看文件


+ 1
- 1
searx/static/themes/oscar/css/pointhi.min.css
文件差异内容过多而无法显示
查看文件


+ 61
- 0
searx/static/themes/oscar/less/logicodev/modal-pic.less 查看文件

@@ -0,0 +1,61 @@
1
+.modal-image {
2
+    position: fixed;
3
+    top: 0;
4
+    right: 0;
5
+    bottom: 0;
6
+    left: 0;
7
+    background: rgba(0,0,0,0.8);
8
+    z-index: 1000000001;
9
+    opacity:0 !important;
10
+    pointer-events: none;
11
+
12
+    button {
13
+        display: none;
14
+    }
15
+
16
+    &:target {
17
+        opacity: 1 !important;
18
+        pointer-events: auto;
19
+    }
20
+
21
+    & > div {
22
+        margin: 2% auto;
23
+        width: 97%;
24
+        background: @dim-gray;
25
+        border: @gray 0.1rem solid;
26
+    }
27
+
28
+    @media (min-width: 769px) {
29
+        & > div {
30
+            max-width: 60.0rem;
31
+        }
32
+    }
33
+
34
+    .image-paging-left {
35
+        font-size: 2.2rem;
36
+        padding-right: 1.0rem;
37
+    }
38
+
39
+    .image-paging-right {
40
+        font-size: 2.2rem;
41
+        padding-left: 1.2rem;
42
+    }
43
+
44
+    .image-container::before {
45
+        display: block;
46
+        min-width: 1.0rem;
47
+        max-width: 60.0rem;
48
+        min-height: 10.0rem;
49
+        height: 30.0rem;
50
+        content: "";
51
+    }
52
+}
53
+
54
+.modal-close {
55
+    position:fixed;
56
+    top: 0;
57
+    left: 0;
58
+    height: 100% !important;
59
+    width: 100% !important;
60
+    z-index: -1;
61
+}

+ 2
- 0
searx/static/themes/oscar/less/logicodev/oscar.less 查看文件

@@ -19,3 +19,5 @@
19 19
 @import "cursor.less";
20 20
 
21 21
 @import "code.less";
22
+
23
+@import "modal-pic.less";

+ 4
- 0
searx/static/themes/oscar/less/pointhi/oscar.less 查看文件

@@ -17,3 +17,7 @@
17 17
 @import "code.less";
18 18
 
19 19
 @import "navbar.less";
20
+
21
+@import "../logicodev/variables.less";
22
+
23
+@import "../logicodev/modal-pic.less";

+ 44
- 29
searx/templates/oscar/result_templates/images.html 查看文件

@@ -1,39 +1,54 @@
1
-{% from 'oscar/macros.html' import draw_favicon %}
2
-
3
-<a href="{{ result.img_src }}" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %} data-toggle="modal" data-target="#modal-{{ index }}-{{pageno}}">
4
-    <img src="{% if result.thumbnail_src %}{{ image_proxify(result.thumbnail_src) }}{% else %}{{ image_proxify(result.img_src) }}{% endif %}" alt="{{ result.title|striptags }}" title="{{ result.title|striptags }}" class="img-thumbnail">
1
+<a href="#open-modal-{{ index }}-{{ pageno }}">
2
+    <img src="{% if result.thumbnail_src %}{{ image_proxify(result.thumbnail_src) }}{% else %}{{ image_proxify(result.img_src) }}{% endif %}" alt="{{ result.title|striptags }}" title="{{ result.title|striptags }}" class="img-thumbnail" id="img-result-thumb-{{ index }}" />
5 3
 </a>
6 4
 
7
-<div class="modal fade" id="modal-{{ index }}-{{ pageno }}" tabindex="-1" role="dialog" aria-hidden="true">
8
-    <div class="modal-dialog">
9
-        <div class="modal-wrapper">
10
-            <div class="modal-header">
11
-                <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
12
-                <h4 class="modal-title">{% if result.engine~".png" in favicons %}{{ draw_favicon(result.engine) }} {% endif %}{{ result.title|striptags }}</h4>
5
+<style type="text/css" media="screen">
6
+#open-modal-{{ index }}-{{ pageno }}:target .image-container::before {
7
+    background: url({{ image_proxify(result.img_src)|safe }}) no-repeat center/contain;
8
+}
9
+</style>
10
+
11
+<div id="open-modal-{{ index }}-{{ pageno }}" class="modal-image">
12
+    <div class="container modal-dialog">
13
+        <div class="row">
14
+            <div class="col-md-12 col-sm-12 col-xs-12 modal-header">
15
+                <a {% if index != 1 %}href="#open-modal-{{ index-1 }}-{{ pageno }}"{% endif %}>
16
+                    <span class="pull-left glyphicon glyphicon-chevron-left image-paging-left"></span>
17
+                 </a>
18
+                <a href="#open-modal-{{ index+1 }}-{{ pageno }}">
19
+                    <span class="image-paging-right pull-right glyphicon glyphicon-chevron-right"></span>
20
+                </a>
21
+                <h4 class="modal-title image-title">{{ result.title|striptags }}</h4>
22
+            </div>
23
+        </div>
24
+        <div class="row">
25
+            <div class="col-md-12 col-sm-12 col-xs-12 modal-body">
26
+                <a href="{{ result.img_src }}" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %}><div class="image-container"></div></a>
13 27
             </div>
14
-            <div class="modal-body">
15
-                <img class="img-responsive center-block" src="{% if result.thumbnail_src %}{{ image_proxify(result.thumbnail_src) }}{% else %}{{ image_proxify(result.img_src) }}{% endif %}" alt="{{ result.title|striptags }}">
28
+        </div>
29
+        {% if result.content %}
30
+        <div class="row">
31
+            <div class="col-md-12 hidden-sm hidden-xs modal-body">
32
+                <p class="result-content">{{ result.content|safe }}</p>
16 33
                 {% if result.author %}<span class="photo-author">{{ result.author }}</span><br />{% endif %}
17
-                {% if result.content %}
18
-                    <p class="result-content">
19
-                        {{ result.content }}
20
-                    </p>
21
-                {% endif %}
22 34
             </div>
23
-            <div class="modal-footer">
24
-                <div class="clearfix"></div>
25
-                <span class="label label-default pull-right">{{ result.engine }}</span>
26
-                <p class="text-muted pull-left">{{ result.pretty_url }}</p>
27
-                <div class="clearfix"></div>
28
-				<div class="row">
29
-                    <div class="col-md-6">
30
-                        <a href="{{ result.img_src }}" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %} class="btn btn-default">{{ _('Get image') }}</a>
31
-                    </div>
32
-                    <div class="col-md-6">
33
-                        <a href="{{ result.url }}" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %} class="btn btn-default">{{ _('View source') }}</a>
34
-                    </div>
35
+        </div>
36
+        {% endif %}
37
+        <div class="modal-footer">
38
+            <div class="row">
39
+                <div class="col-md-10 col-xs-12">
40
+                    <p class="text-muted pull-left">{{ result.pretty_url }}</p>
35 41
                 </div>
42
+                <div class="col-md-2 hidden-sm hidden-xs">
43
+                    <span class="label label-default pull-right">{{ result.engine }}</span>
44
+                </div>
45
+            </div>
46
+            <div class="row">
47
+                <a href="{{ result.url }}" class="btn btn-default">
48
+                    {{ _('View source') }}
49
+                </a>
36 50
             </div>
37 51
         </div>
38 52
     </div>
53
+    <a href="#img-result-thumb-{{ index }}-{{ pageno }}" class="modal-close"></a>
39 54
 </div>