Difference between revisions of "Team:Cambridge-JIC/Templates/Menu"
m |
|||
Line 38: | Line 38: | ||
}) | }) | ||
$(".slide").each(function(){ | $(".slide").each(function(){ | ||
− | $(this).data("width", $(this).width()); | + | if($(this).data("mobile") == null) { |
− | + | $(this).data("mobile", 1) | |
+ | $(this).data("width", $(this).width()); | ||
+ | $(this).width("auto") | ||
− | + | $(this).data("minheight", $(this).css("min-height")); | |
− | + | $(this).css("min-height", "0px") | |
− | + | $(this).children("div").data("fsz", $(this).children("div").css("font-size")); | |
− | + | $(this).children("div").css("font-size", "12pt") | |
− | + | $(this).children("div").data("ml", $(this).children("div").css("margin-left")); | |
− | + | $(this).children("div").css("margin-left", "30px") | |
− | + | $(this).data("img", $(this).css("background-image")); | |
− | + | mobimg = $(this).data("mobimg") | |
− | + | $(this).css("background-image", (mobimg == null? "none":mobimg)) | |
+ | } | ||
}); | }); | ||
} else { | } else { | ||
Line 64: | Line 67: | ||
}) | }) | ||
$(".slide").each(function(){ | $(".slide").each(function(){ | ||
− | $(this).width($(this).data("width")+"px") | + | if($(this).data("mobile") == 1) { |
− | + | $(this).data("mobile", null) | |
− | + | $(this).width($(this).data("width")+"px") | |
− | + | $(this).css("background-image", $(this).data("img")) | |
− | + | $(this).css("min-height", $(this).data("minheight")) | |
+ | $(this).children("div").css("font-size", $(this).children("div").data("fsz")) | ||
+ | $(this).children("div").css("margin-left", $(this).children("div").data("ml")) | ||
+ | } | ||
}); | }); | ||
} | } |
Revision as of 08:27, 28 July 2015