wordpress - Pretty Photo Lightbox / Videos on Mobile - Too Small -
wordpress - Pretty Photo Lightbox / Videos on Mobile - Too Small -
this related site i'm building in wordpress. having problem making pretty photo lightbox work little screened devices. default opens little , unuseable lightbox on phones. i've found several threads how prepare , none seem trick. has here done successfully? using justified image grid plug-in. thanks!
i'm using mobile observe http://mobiledetect.net/
in php file include mobile_detect.php
and check mobile devices follows:
<?php include 'mobile_detect.php'; $detect = new mobile_detect(); ?> //prettyphoto js goes here ...... <a id="video_link" href="https://www.youtube.com/watch?v=qkhsb0bxuro&rel=0" <?php if ($detect->ismobile() && !$detect->istablet()) { echo ""; //hide iphones , forcefulness ios open youtube app instead }elseif ($detect->istablet){ echo "rel=\"prettyphoto\""; //show prettyphoto on tablets }else{ echo "rel=\"prettyphoto\""; //also show prettyphoto popup on desktops } ?> title=""><img src="images/play-video.png" alt="" title="" width="380" height="147" /></a> wordpress mobile video lightbox prettyphoto
Comments
Post a Comment