opera-mini

Media queries in Opera mini - incorrect display

对着背影说爱祢 提交于 2021-02-10 23:22:21
问题 Why does this CSS not work in Opera mini? .gogogo{height:50px;width:100%;} @media screen and (min-width:100px){ .gogogo {background-color:red;} } @media screen and (min-width:320px){ .gogogo {background-color:orangered;} } @media screen and (min-width:480px){ .gogogo {background-color:orange;} } @media screen and (min-width:600px){ .gogogo {background-color:yellowgreen;} } @media screen and (min-width:768px){ .gogogo {background-color:green;} } HTML: <div class="gogogo"></div> JSFiddle,

Media queries in Opera mini - incorrect display

こ雲淡風輕ζ 提交于 2021-02-10 23:22:15
问题 Why does this CSS not work in Opera mini? .gogogo{height:50px;width:100%;} @media screen and (min-width:100px){ .gogogo {background-color:red;} } @media screen and (min-width:320px){ .gogogo {background-color:orangered;} } @media screen and (min-width:480px){ .gogogo {background-color:orange;} } @media screen and (min-width:600px){ .gogogo {background-color:yellowgreen;} } @media screen and (min-width:768px){ .gogogo {background-color:green;} } HTML: <div class="gogogo"></div> JSFiddle,

Debug javascript in opera mini

China☆狼群 提交于 2021-02-06 09:26:27
问题 How do i debug javascript in opera mini? I have already installed opera mini emulator. can someone help me how do i debug javascript remotely with dragonfly (firebug equivalent of opera)? My script does in work in all other browser but not in opera mini 回答1: Opera Mini supports console API like this: server:console?post=http://url/to/your/script OR You can dump your log data to source and get source using this command(this fill display source code of current/last page for your device): server

Desktop web version and mobile web version in Opera Mini

大憨熊 提交于 2020-01-23 14:30:58
问题 So I have a website and I mean to make 2 version of it, the desktop version (with full features) and mobile version (simplification of the desktop version). I'm using media query in CSS to adjust the style. It works well in native browser. When I open my web using native browser it will show the mobile version style. But somehow when I open my web using Opera Mini, it keeps showing the desktop version instead. I have googled it and didn't found any clue. Any idea how does it happen? Thanks!

Desktop web version and mobile web version in Opera Mini

孤人 提交于 2020-01-23 14:29:06
问题 So I have a website and I mean to make 2 version of it, the desktop version (with full features) and mobile version (simplification of the desktop version). I'm using media query in CSS to adjust the style. It works well in native browser. When I open my web using native browser it will show the mobile version style. But somehow when I open my web using Opera Mini, it keeps showing the desktop version instead. I have googled it and didn't found any clue. Any idea how does it happen? Thanks!

How to debug on Opera Mini?

拥有回忆 提交于 2019-12-28 13:23:08
问题 How do I debug a website that looks weird on Opera Mini? The site is working fine on any other browser. 回答1: Alas, I know of no dedicated resource on how to debug a website w/ Mini, though there are a few related articles on http://dev.opera.com that might help you. The most recent article is A developer's look at Opera Mini 5, but Making Small Devices Look Great and Designing With Opera Mini in Mind should be particularly useful as well. Generally check how a site looks in Opera Desktop and

How to debug on Opera Mini?

爷,独闯天下 提交于 2019-12-28 13:23:02
问题 How do I debug a website that looks weird on Opera Mini? The site is working fine on any other browser. 回答1: Alas, I know of no dedicated resource on how to debug a website w/ Mini, though there are a few related articles on http://dev.opera.com that might help you. The most recent article is A developer's look at Opera Mini 5, but Making Small Devices Look Great and Designing With Opera Mini in Mind should be particularly useful as well. Generally check how a site looks in Opera Desktop and

Why are my web pages zoomed in when I open them in Opera Mobile?

谁说胖子不能爱 提交于 2019-12-24 01:43:33
问题 I am developing a mobile version of web pages. I am testing with a Symbian phone with two browsers. The default browser is working properly but I am having problem with Opera Mobile. Every time a page loads, it loads zoomed in rather than being fit the screen. This even happens in a simple page like this: <?php echo "<p>Guys I am developing a mobile version web pages, I am testing with a symbian phone with two browsers. The default browser is working properly but I am having problem with

Get my website to be zoomed out by default on mobile phones

百般思念 提交于 2019-12-18 03:23:48
问题 So I want users to be able to see my background on my website. Currently my websites width is 925px and when you view the website in a mobile browser (e.g. iPhone, Opera Mini) it is zoomed in on the text and the user can't see the background. I've tried using the meta viewport tag unsuccessfully. How do I get my website to be zoomed out by default on mobile browsers? EDIT: Here is the code I've tried so far: <meta name = "viewport" content = "width = device-width"> 回答1: I know this is an old