jQuery(document).ready(function() { jQuery("div.zh-digital-showroom").html('
1
2
3
'); jQuery("img.zh_bg").load(function() { set_zh_Popups(); }).attr("src", "http://wawi.wohnstation.de/showroom/uploads/1423668558.jpg"); jQuery("div.zh-digital-showroom div.zh_dot_container").each(function() { jQuery(this).attr("data-height", jQuery(this).height()).addClass("zh_hidden"); }); jQuery("div.zh_dot").mouseenter(function() { if (jQuery("div.zh_dot-" + jQuery(this).attr("data-id")).hasClass("zh_bottom")) { jQuery("div.zh_dot-" + jQuery(this).attr("data-id")).css("top", "-" + jQuery("div.zh_dot-" + jQuery(this).attr("data-id")).attr("data-height") + "px"); } jQuery("div.zh_dot-" + jQuery(this).attr("data-id")).addClass("zh_activ"); }); jQuery("div.zh_dot").mouseleave(function() { var id = jQuery(this).attr("data-id"); setTimeout(function() { jQuery("div.zh_dot-" + id).removeClass("zh_activ"); }, 100); }); jQuery("div.zh_dot_container").mouseenter(function() { jQuery(this).addClass("zh_over"); }); jQuery("div.zh_dot_container").mouseleave(function() { jQuery(this).removeClass("zh_over"); }); }); function set_zh_Popups() { var zh_height = jQuery("div.zh-digital-showroom img.zh_bg").height(); jQuery("div.zh-digital-showroom div.zh_popups").css("height", zh_height + "px"); } jQuery(window).resize(function() { set_zh_Popups(); });