corrossel with different images in the mobile and desk

0

Good morning,

I'm developing a responsive website, in it I'll use a standard bootstrap carousel, but will be different images when the carousel is on the mobile and desk.

Does anyone have any idea how I can do this without using two elements?

Personal Vlw!

    
asked by anonymous 18.11.2016 / 13:59

1 answer

0

Could not use

require_once 'Mobile_Detect.php';
$detect = new Mobile_Detect;

// Qualquer dispositivo móvel (telefones ou tablets).
if ( $detect->isMobile() ) {
   ....images mobiles
}else{
   ....images desk
}

the Mobile_Detect.php file on link

    
18.11.2016 / 14:45