ie-mobile

Windows Phone IE mobile bugs with transparent background-image and bottom absolute positionning

假如想象 提交于 2019-12-12 12:43:38
问题 I have 2 problems with WP IE : transparent background-image have artifacts on their transparent borders absolute positioned divs to the bottom of the page leaves a ~5px white gap between the browser navigation bar and the bottom of the page Note that I use divs instead of img to handle CSS retina image replacement for HDPI devices (iPhone 4+, iPad3+, Android Galaxy S3, WP8 Lumia 920...). With img, the artifacts are gone. HTML: <div class="header-left"></div> <div class="footer-left"></div>

prevent IE Mobile from scaling web pages automatically

陌路散爱 提交于 2019-12-12 01:39:36
问题 I have not been able to get IE mobile to stop automatically resizing my site design. I am using three stylesheets with media queries to display the site differently on different device screens. I've included the meta tag so it shows the mobile stylesheet on IE mobile but it keeps setting the viewport at 320X480 instead of using the actual size of 480X800. How can I force it to display at the actual screen size instead of scaling for a smaller resolution? 回答1: IE Mobile interprets width=device

IE9 Mobile - html5 video events?

限于喜欢 提交于 2019-12-11 16:21:56
问题 Doesn't IE9 Mobile support html5 video events? till now i got no luck with that ... and also found no information about it. any ideas ? ;) thx! 回答1: it seems to only support a very, very minimal subset of what desktop ie9 can handle. So far from what I observed, ie9mobile supports e.g. "loadstart" and "canplay" events but does not fire the "ended" event just like many others. Test with your phone here to see what's possible and what not: http://www.w3.org/2010/05/video/mediaevents.html 来源:

Access parent's DOM from script in an iframe in IE Mobile

若如初见. 提交于 2019-12-11 07:57:57
问题 I have a framed window (currently iframe but may possibly be frame) - I do not have control over this. I would like to detect if my content is inside an iframe (or frame). I wanted to compare the location of the current document with the one the top object holds but it appears it is the same object (top === window). After extensive googling I got to this IEMobile blog entry and in one of the comments there is this answer: iemoblog said: No, you can't access any part of the parent's DOM from

How to Add options to <SELECT>, in IE Windows Mobile 5

烈酒焚心 提交于 2019-12-11 03:35:53
问题 Trying to programmatically add options to a SELECT drop down in IE Windows Mobile. Because this is IE Windows Mobile 5, most solutions involving getElementID do not function, so I have had to resort to more plain vanilla HTML /Java script, the example below works fine in IE 6 and FF , but fails with "Object doesn't support this property or method" in Windows Mobile 5 function insertBarcodes() { val = document.form1.barcode.value ; i = document.form1.blist.length; myNewOption = new Option(val

Is there a way to render PNG with gradients in Internet Explorer Mobile 7 correctly?

北慕城南 提交于 2019-12-01 09:55:20
问题 Call me crazy, but I'm optimizing a website for the Internet Explorer Mobile 7. My main problem, besides several CSS issues, is that it seems that this browser displays 24 bit PNGs in 8 bit, that means gradients look horrible. Anyone an idea how to fix this? 回答1: You need to dither the image so that it renders nicely. Here are two links that show you how to do this: Photoshop action for Windows Phone 7 Dithering High Quality Dithering for Windows Phone 7 来源: https://stackoverflow.com