123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- var header = $("header"),
- headerTitle = $("#title"),
- image_view = $("#image_view"),
- api_path = "php/api.php",
- infobox = $("#infobox");
-
- $(document).ready(function(){
-
- $("#infobox_overlay, #infobox .header a").live("click", function() { hideInfobox() });
- $("#button_info").live("click", function() { showInfobox() });
-
- $("#button_download").live("click", function() {
- link = $("#image_view #image").css("background-image").replace(/"/g,"").replace(/url\(|\)$/ig, "");
- window.open(link,"_newtab");
- });
-
- loadPhotoInfo(gup("p"));
-
- });
- function showInfobox() {
- $("body").append("<div id='infobox_overlay'></div>");
- infobox.css("right", "0px");
-
- }
- function hideInfobox() {
- $("#infobox_overlay").remove();
- infobox.css("right", "-320px");
-
- }
- function loadPhotoInfo(photoID) {
- params = "function=getPhotoInfo&photoID=" + photoID;
- $.ajax({type: "POST", url: api_path, data: params, dataType: "json", success: function(data) {
- if (!data.title) data.title = "Untitled";
- document.title = "Lychee - " + data.title;
- headerTitle.html(data.title);
- image_view.attr("data-id", photoID);
- image_view.html("").append("<div id='image' style='background-image: url(" + data.url + ")'></div>");
- image_view.removeClass("fadeOut").addClass("fadeIn").show();
-
- infobox.html(buildInfobox(data)).show();
- }, error: ajaxError });
- }
- function ajaxError(jqXHR, textStatus, errorThrown) {
- console.log(jqXHR);
- console.log(textStatus);
- console.log(errorThrown);
-
- }
|