2014-06-24 61 views
0

这与我在Wordpress中建立的网站有关。我无法使Pretty Photo Lightbox适用于小型屏幕设备。默认情况下,它会在手机上打开一个非常小且不可用的灯箱。我已经找到了几条关于如何修复它的线索,而且似乎没有任何关键。有没有人在这里成功地完我正在使用它与对齐图像网格插件。谢谢!漂亮的照片在手机上的灯箱/视频 - 太小

回答

1

我使用移动检测来自http://mobiledetect.net/

在我的PHP文件,我包括mobile_detect.php

并为您的移动设备如下:

<?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 from iphones and force iOS to 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>