1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
<script type="application/javascript">
$(document).ready(function()
{ /* chargement des contenus */
$("#left").load("menu.html", "text/html");
$("#data").load("content.html", "text/html");
pageResized(); $(window).resize(pageResized);});
function pageResized()
{
var width = $(document).innerWidth();
var height = $(document).innerHeight();
var page = $("#page");
var top = $("#top");
var left = $("#left");
var data = $("#data"); /* calcul et/ou affectation des dimensions */
page.width(width); page.height(height);
left.height(height - top.outerHeight());
data.width(width - left.outerWidth());
data.height(height - top.outerHeight());
}
</script>
<style>body |
Partager