Hello,
Normalement, les périphériques s'adatent bien s'il n'y a que des
évènements souris, mais pas tjrs. Il faut détecter le type de
périphériques pour gérer les évènements en conséquence. J'ai
exactement ça dans ma toolbox ;).
// Detecting device specs
if((window.matchMedia&&window.matchMedia('(max-width:
650px)').matches))
{
this.screenType='small';
}
else
this.screenType='normal';
if(('ontouchstart' in window) || (window.DocumentTouch && document
instanceof DocumentTouch))
{
this.navType='touch';
}
else
this.navType='normal';
if(navigator.userAgent.match(/android|iphone|ipod|fennec|opera mobi/
i))
{
this.navType='touch';
this.screenType='small';
}
if(navigator.userAgent.match(/ipad/i))
{
this.navType='touch';
}
++
On 16 mai, 10:58, Stephane Deschamps <
stephane.descha...@gmail.com>
wrote: