1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
| <!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8"/>
<meta name="Author" content="Daniel Hagnoul" />
<title>Page type</title>
<style>
body {
background-color:#dcdcdc;
color:#000000;
font-family:sans-serif;
font-size:medium;
font-style:normal;
font-weight:normal;
line-height:normal;
letter-spacing:normal;
}
h1,h2,h3,h4,h5 {
font-family:serif;
}
div,p,h1,h2,h3,h4,h5,h6,ul,ol,dl,form,table,img {
margin:0px;
padding:0px;
}
p {
padding:6px;
}
ul,ol,dl {
list-style:none;
padding-left:6px;
padding-top:6px;
}
li {
padding-bottom:6px;
}
div#conteneur {
width:95%;
margin:12px auto;
padding:6px;
background-color:#FFFFFF;
color:#000000;
border:1px solid #666666;
font-size:0.8em;
}
/* TEST */
div#bars {
width:600px;
height:auto;
margin:12px;
background-color:#F5F5F5;
border:1px solid black;
font-size:0.9em;
font-weight:bold;
}
</style>
<script charset="CP-1252" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script>
function bargraph(){
var couleurs = ['#be1e2d','#666699','#92d5ea','#ee8310','#8d10ee','#5a3b16','#26a4ed','#f45a90','#e9e744'];
var values = [
[17, 44-15, couleurs[0]],
[13, 74-45, couleurs[1]],
[10, 122-75, couleurs[2]],
[8, 191-123, couleurs[3]],
[1, 254-192, couleurs[4]],
[1, 390-255, couleurs[5]]
];
var valuesLength = values.length;
var maxValue = values[0][0];
for(var i = 0; i < valuesLength; i++){
maxValue = Math.max(maxValue, values[i][0]);
}
for (var i = 0; i < valuesLength; i++){
var newBar = $("<span>", {
html: values[i][0] + " (" + values[i][1] + ")",
css:{
display:"block",
width:"0px",
height:"0px",
backgroundColor:values[i][2],
marginBottom:"3px", /* espace de 3px entre chaque barre */
color:"#ffffff",
border:"1px solid grey"
}
});
$("#bars").append(newBar);
newBar.animate({
width: (100 * values[i][0] / maxValue) + "%",
height: parseInt((6 + values[i][1])/2) + "px" /* min 6/2=3px */
}, 2000);
}
$("#bars span").last().css("marginBottom","0px");
}
$(function(){
bargraph();
});
</script>
</head>
<body>
<div id="conteneur">
<p>Mon beau graphique</p>
<div id="bars"></div>
<p>Explications</p>
</div>
</body>
</html> |
Partager