24 lines
911 B
PHP
Executable File
24 lines
911 B
PHP
Executable File
<?php
|
|
$nomFicAppelant = basename(__FILE__);
|
|
// -----------------------------------------------------
|
|
// Calcul de la proportion de reduction ou augmentation
|
|
// -----------------------------------------------------
|
|
// https://css-tricks.com/snippets/css/media-queries-for-standard-devices/
|
|
// -----------------------------------------------------
|
|
if ($resolution<540) {
|
|
// $coeff=$resolution/780;
|
|
// $prctLargeur=100*$coeff;
|
|
$prctLargeur=$prctLargeur-0.1;
|
|
$prctColumnD=$prctColumnD+(10);
|
|
}
|
|
else $prctLargeur="99.8";
|
|
|
|
$debugRespMsg=$debugRespMsg. ' | prctLargeur = ' .$prctLargeur;
|
|
$debugRespMsg=$debugRespMsg. ' | prctColumnD = ' .$prctColumnD;
|
|
$debugRespMsg=$debugRespMsg. '  resolution = ' .$resolution;
|
|
$debugRespMsg=$debugRespMsg. ' | coeff = ' .$coeff;
|
|
$admMsgClass='ok';
|
|
|
|
genereFic("max-width:" .$resolution. "px","","", $barreCoul, $croixCoul);
|
|
|
|
?>
|