There is no easy workaround yet.
So, I have to run the following script after every scroll event in order to update the "top" style of the popup window (keep updating even before the user click the lightbox link).
(include this script right before the </head>)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var deviceIphone = "iphone"; | |
var deviceIpod = "ipod"; | |
var deviceIpad = "ipad"; | |
var deviceAndroid = "android"; | |
//Initialize our user agent string to lower case. | |
var uagent = navigator.userAgent.toLowerCase(); | |
function detectUserAgent(deviceName) | |
{ | |
return (uagent.search(deviceName) > -1) | |
} | |
function isMobileDevice() | |
{ | |
return (detectUserAgent(deviceIphone) || detectUserAgent(deviceIpod) || detectUserAgent(deviceIpad) || detectUserAgent(deviceAndroid)); | |
} | |
function updateLightboxTop() { | |
var win_y = $(window).height(); | |
var scroll_y = $(window).scrollTop(); | |
if (isMobileDevice()) { | |
$("#CB_Window").css({ top: (win_y * 0.5 + scroll_y) + "px" }); | |
} | |
} | |
var showTimer = false; | |
function updateLightboxTopWithTimer(evt) { | |
if ( showTimer ) { | |
clearTimeout( showTimer ); | |
} | |
showTimer = setTimeout( updateLightboxTop, 100 ); | |
} | |
$(window).bind( "scroll", updateLightboxTopWithTimer); |
No comments:
Post a Comment