+ Explicitation

This commit is contained in:
xdrm-brackets 2016-01-04 17:09:07 +01:00
parent a585b3d9bd
commit c816d7a033
1 changed files with 9 additions and 3 deletions

View File

@ -42,11 +42,13 @@ function displayParcours($parcours, $selected){
'facebook' => '#3372c5',
'blou' => '#3c73e6',
'default' => '#28b965',
'gray' => '#888888'
'gray' => '#888888',
'black' => '#000000'
);
/* CHOIX DU THEME */
$textColor = $themes['gray'];
$normColor = $themes['gray']; // couleur texte normal
$seleColor = $themes['black']; // couleur texte semestre selectionné
@ -59,12 +61,16 @@ function displayParcours($parcours, $selected){
echo "<svg height='100' width='".($W + 2*$m)."'>";
// [1] ligne de liaison
echo "<rect x='".$line['x']."' y='".$line['y']."' width='".$line['width']."' height='".$line['height']."' fill='".$textColor."' />";
echo "<rect x='".$line['x']."' y='".$line['y']."' width='".$line['width']."' height='".$line['height']."' fill='".$normColor."' />";
// [3] points d'ancrages
for($i = 0 ; $i < $n ; $i++){
$ti = $lettrePixel * strlen( $parcours[$i]['nom'] ); // longueur du texte actuel
// si parcours en cours, on met le texte en valeur
if( $parcours[$i]['id'] == $selected ) $textColor = $seleColor;
else $textColor = $normColor;
// couleur du texte en fonction de la note
if( !is_bool($parcours[$i]['moyenne']) ){
$val = 20 * $parcours[$i]['moyenne']['moyenne']/$parcours[$i]['moyenne']['base'];