vvvmax / unitegallery

Unite Gallery - Responsive jQuery Image and Video Gallery Plugin. Aim to be the best gallery on the web on it's kind. See demo here:
http://unitegallery.net
MIT License
530 stars 157 forks source link

No default gallery fullscreen in browser IE #37

Open mike2m opened 9 years ago

mike2m commented 9 years ago

Hi, No default gallery fullscreen in browser IE! Press button Fullscreen and image size inside tag body. In browser Opera and Firefox is work in Fullscreen. How to make to worked in browser IE in Fullscreen?

vvvmax commented 9 years ago

HI. what IE version do you have?

On Tue, Oct 27, 2015 at 4:17 PM, mike2m notifications@github.com wrote:

Hi, No default gallery fullscreen in browser IE! Press button Fullscreen and image size inside tag body. In browser Opera and Firefox is work in Fullscreen. How to make to worked in browser IE in Fullscreen?

— Reply to this email directly or view it on GitHub https://github.com/vvvmax/unitegallery/issues/37.

mike2m commented 9 years ago

Hi, IE ver. 11.0.9600.18059

mike2m commented 9 years ago

Hi, I was looking for how to solve the problem and came across this solution here http://pritomkumar.blogspot.ru/2014/03/native-fullscreen-javascriptjquery-api.html and http://generatedcontent.org/post/70347573294/is-your-fullscreen-api-code-up-to-date-find-out

Example javascript: function toggleFullScreen() { if (!document.fullscreenElement && !document.mozFullScreenElement && !document.webkitFullscreenElement && !document.msFullscreenElement ) { if (document.documentElement.requestFullscreen) { document.documentElement.requestFullscreen(); } else if (document.documentElement.msRequestFullscreen) { document.documentElement.msRequestFullscreen(); } else if (document.documentElement.mozRequestFullScreen) { document.documentElement.mozRequestFullScreen(); } else if (document.documentElement.webkitRequestFullscreen) { document.documentElement.webkitRequestFullscreen(); } } else { if (document.exitFullscreen) { document.exitFullscreen(); } else if (document.msExitFullscreen) { document.msExitFullscreen(); } else if (document.mozCancelFullScreen) { document.mozCancelFullScreen(); } else if (document.webkitExitFullscreen) { document.webkitExitFullscreen(); } } }

Example CSS: :-ms-fullscreen { width: 100%; height: 100%; position: fixed; top: 0; } :-webkit-full-screen { width: 100%; position: fixed; top: 0;

/* webkit keeps the original background color, so reset / background: none; } :fullscreen { / not currently needed, but just in case */ width: 100%; height: 100%; position: fixed; top: 0;

/* keeps correct aspect ratio and full image visible / -o-object-fit: contain; / Opera 12.1 */ object-fit: contain; }

vvvmax commented 9 years ago

Hi. The "native" fullscreen is not working for ie11 in the gallery, but there is a "fake fullscreen" that is working. it's acting like native fullscreen only it's inside the browser. I just checked the default theme in ie11 on unitegallery.net website.

On Thu, Oct 29, 2015 at 8:07 AM, mike2m notifications@github.com wrote:

Hi, I was looking for how to solve the problem and came across this solution here http://pritomkumar.blogspot.ru/2014/03/native-fullscreen-javascriptjquery-api.html

— Reply to this email directly or view it on GitHub https://github.com/vvvmax/unitegallery/issues/37#issuecomment-152087442.

vvvmax commented 9 years ago

ok, now I see the link you sent, I'll try to check this issue tomorrow / after tomorrow and let you know.

On Thu, Oct 29, 2015 at 2:28 PM, maxim vendrov vvvmax@gmail.com wrote:

Hi. The "native" fullscreen is not working for ie11 in the gallery, but there is a "fake fullscreen" that is working. it's acting like native fullscreen only it's inside the browser. I just checked the default theme in ie11 on unitegallery.net website.

On Thu, Oct 29, 2015 at 8:07 AM, mike2m notifications@github.com wrote:

Hi, I was looking for how to solve the problem and came across this solution here http://pritomkumar.blogspot.ru/2014/03/native-fullscreen-javascriptjquery-api.html

— Reply to this email directly or view it on GitHub https://github.com/vvvmax/unitegallery/issues/37#issuecomment-152087442 .

mike2m commented 9 years ago

Hi, I made to open in full screen in IE. However, the button does not work exit from full-screen mode... Download link http://ge.tt/7TMDTtQ2/v/0

vvvmax commented 9 years ago

HI. I have tried to make ms full screen but it's not works right like in every other browser. Please look:

http://unitegallery.net/index.php?page=default

it's not enlarging to 100% with/height, so I'll have to turn it off to fake full screen.

On Thu, Oct 29, 2015 at 4:59 PM, mike2m notifications@github.com wrote:

Hi, I made to open in full screen in IE. However, the button does not work exit from full-screen mode... Download Link http://ge.tt/7TMDTtQ2/v/0

— Reply to this email directly or view it on GitHub https://github.com/vvvmax/unitegallery/issues/37#issuecomment-152206255.

mike2m commented 9 years ago

Hi, fake full screen no work fullscreen, fake full screen tag inside body

vvvmax commented 9 years ago

Hi, what you mean?

On Sun, Nov 1, 2015 at 6:21 PM, mike2m notifications@github.com wrote:

Hi, fake full screen no works fullscreen, fake full screen tag inside ...

— Reply to this email directly or view it on GitHub https://github.com/vvvmax/unitegallery/issues/37#issuecomment-152841369.

mike2m commented 9 years ago

Hi, official document https://msdn.microsoft.com/en-us//library/dn265028(v=vs.85).aspx

mike2m commented 9 years ago

Hi, so will a solution to a bug in IE with fullscreen?

vvvmax commented 9 years ago

HI. I"ll try to work on that another time this weekend and will tell you.

On Sat, Nov 7, 2015 at 9:32 AM, mike2m notifications@github.com wrote:

Hi, so will a solution to a bug in IE with fullscreen?

— Reply to this email directly or view it on GitHub https://github.com/vvvmax/unitegallery/issues/37#issuecomment-154649711.

mike2m commented 9 years ago

Hi, write your e-mail address, I'll give you a link to my site, so you can see a bug

vvvmax commented 9 years ago

no need. i see the bug myself. ill try and let you know

On Sat, Nov 7, 2015 at 9:56 AM, mike2m notifications@github.com wrote:

Hi, write your e-mail address, I'll give you a link to my site, so you can see a bug

— Reply to this email directly or view it on GitHub https://github.com/vvvmax/unitegallery/issues/37#issuecomment-154652066.

vvvmax commented 8 years ago

Hi, I"m sorry, but I'm slow, still working on the bug. I'll let you know when I do it.

On Sat, Nov 7, 2015 at 11:26 AM, maxim vendrov vvvmax@gmail.com wrote:

no need. i see the bug myself. ill try and let you know

On Sat, Nov 7, 2015 at 9:56 AM, mike2m notifications@github.com wrote:

Hi, write your e-mail address, I'll give you a link to my site, so you can see a bug

— Reply to this email directly or view it on GitHub https://github.com/vvvmax/unitegallery/issues/37#issuecomment-154652066 .

mike2m commented 8 years ago

Hi, I looking forward to your correcting the error regards.

vvvmax commented 8 years ago

Hi, Just fixed the ie bug error. Please take the new version. Will update github soon too (working on some other updates).

https://www.dropbox.com/s/8zidp6e70u9paq9/unitegallery_iefix.zip?dl=0

On Tue, Nov 10, 2015 at 9:04 AM, mike2m notifications@github.com wrote:

Hi, I looking forward to your correcting the error regards.

— Reply to this email directly or view it on GitHub https://github.com/vvvmax/unitegallery/issues/37#issuecomment-155332831.

mike2m commented 8 years ago

Hi, excellent! thank you...