]> dev.renevier.net Git - syp.git/commitdiff
when clicking image in popup, show it full screen
authorarno <arenevier@fdn.fr>
Thu, 6 Aug 2009 22:31:45 +0000 (00:31 +0200)
committerarno <arenevier@fdn.fr>
Fri, 7 Aug 2009 10:10:57 +0000 (12:10 +0200)
inc/templates_index.php
js/syp.js
media/syp.css

index 6fd516b09e46f6e8ed956417c50c2afc65533049..a84a9c6ade648f0e1830310a4403d257d90d43f2 100644 (file)
@@ -73,5 +73,15 @@ if (defined ("THUMBSMAXSIZE") && (THUMBSMAXSIZE > 0)) {
         <div id="map"></div>
         <div id="message"></div>
 
+    <div id="bigimg_container">
+    <div id="bigimg_transparency"></div>
+        <div id="bigimg_content">
+            <img id="bigimg" onclick="SYP.closeBigImage()">
+            <img id="bigimg_close" alt="<?php ptrans('close')?>" 
+                    src="openlayers/theme/default/img/close.gif" 
+                    onclick="SYP.closeBigImage()">
+        </div>
+    </div>
+
 </body>
 </html>
index fdd69ed7253b293e1d6dd9b0c1044925ee8fa4e8..d8a54b5d5a59611d44cb4663e5dbec309161abb7 100644 (file)
--- a/js/syp.js
+++ b/js/syp.js
@@ -198,6 +198,50 @@ var SYP = {
         };
         map.addPopup(popup);
         feature.popup = popup;
+        var anchor = popup.div.getElementsByTagName("a")[0];
+        if (anchor) {
+            anchor.onclick = function() { 
+                SYP.showBigImage(this.href);
+                return false;
+            }
+        }
+    },
+
+    showBigImage: function (href) {
+        try {
+            document.getElementById('bigimg_container').style.display = "table";
+        } catch(e) {
+            document.getElementById('bigimg_container').style.display = "block";
+        }
+        var maxHeight = document.body.clientHeight * 0.9;
+        var maxWidth = document.body.clientWidth * 0.9;
+        document.getElementById('bigimg').style.height = "";
+        document.getElementById('bigimg').style.width = "";
+        document.getElementById('bigimg').style.maxHeight = maxHeight + "px";
+        document.getElementById('bigimg').style.maxWidth = maxWidth + "px";
+        document.getElementById('bigimg').onload = function () {
+            var icon = document.getElementById('bigimg_close');
+            icon.style.top = this.offsetTop;
+            icon.style.left = this.offsetLeft + this.clientWidth - icon.clientWidth;
+
+            var heightRatio = this.clientHeight / parseInt(this.style.maxHeight);
+            var widthRatio = this.clientWidth / parseInt(this.style.maxWidth);
+            if (heightRatio > 1 || widthRatio > 1) {
+                if (heightRatio > widthRatio) {
+                    this.style.height = this.style.maxHeight;
+                } else {
+                    this.style.width = this.style.maxWidth;
+                }
+            }
+
+        };
+        document.getElementById('bigimg').src = href;
+    },
+
+    closeBigImage: function() {
+        document.getElementById('bigimg').src = "";
+        document.getElementById('bigimg').parentNode.innerHTML = document.getElementById('bigimg').parentNode.innerHTML;
+        document.getElementById('bigimg_container').style.display = "none";
     },
 
     Utils: {
index 25be854d3ef2b7bc43f3c4f32c705c9366141aa1..1a9fa058b952d0cd45595ef59c775fb63f1f2bca 100644 (file)
     font-weight: bold;
     background-color: white;
 }
+
+#bigimg_container {
+    z-index: 2001;
+    position: absolute;
+    top: 0;
+    left: 0;
+    width: 100%;
+    height: 100%;
+    display: none;
+    text-align: center;
+    overflow: hidden;
+}
+#bigimg_transparency {
+    z-index: -1;
+    position: absolute;
+    top: 0px;
+    left: 0px;
+    right: 0px;
+    bottom; 0px;
+    width: 100%;
+    height: 100%;
+    background-color: #000;
+    opacity: 0.6;
+    filter: alpha(opacity = 60);
+}
+#bigimg_content {
+    display: table-cell;
+    vertical-align: middle;
+    _position: absolute;
+    _top: 50%;
+    _left: 50%;
+}
+#bigimg {
+    -moz-user-select: none;
+    -webkit-user-select: none;
+    _position: relative;
+    _left: -50%;
+    _top: -50%;
+}
+#bigimg_close {
+    position: absolute;
+    top: 0;
+    left: 0;
+    cursor: pointer;
+}