opera-mini

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

老子叫甜甜 提交于 2019-12-18 03:23:03
问题 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

CSS media type: How to load CSS for mobile?

烈酒焚心 提交于 2019-12-17 15:57:18
问题 With this code: <link rel="stylesheet" type="text/css" href="media/css/mobile.css" media="handheld" /> <link rel="stylesheet" type="text/css" href="media/css/screen.css" media="screen" /> on my N78 the nokia's default browser and opera mini load screen.css instead of mobile.css . What am I missing? 回答1: Nokia N78 uses the S60 browser, which reads only "screen" stylesheets. It won't read the "handheld". It doesn't support media query. Instead of trying to type everything here, have a look at

How can Opera-mini runs javascript only in the server instead the device?

[亡魂溺海] 提交于 2019-12-13 23:06:33
问题 I read that Opera mini browser can run JavaScript only in server (the code isn't run in the client, it's gets it results from the server) in a newspaper. I am writing online games and my boss want me do the same thing, but I spent hours and found nothing. Anyone know how to do it? 回答1: Seems that you (or your boss) misunderstood how this works. As explained here, what opera mini do is using a proxy server that executes and compress the javascript code and returns the results to the device.

min-width:320px not firing correctly on Opera Mini for Android

大城市里の小女人 提交于 2019-12-13 19:16:26
问题 Testing some media queries in various browsers on Android and noticed Opera Mini 6.5 on my Samsung Galaxy S does not seem to apply stlyes inside the following code. @media screen and (min-width: 320px){ It seems if I lower the value to 282, Opera Mini will excute the styles inside the media query. @media screen and (min-width: 282px){ I'm wondering if anyone else has run into issues with Opera Mini not handling media queries correctly on Android phones. All of the other browsers I've tested

Viewport on Opera Mini & WM6.1 does not match 100% of the `device-width`

巧了我就是萌 提交于 2019-12-13 18:13:36
问题 sample page: 256.cz/test/ with code: meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no, target-densitydpi=device-dpi" same CSS style for mobile view and normal view latest Opera Mini from Android Market (Android version 2.1) - scale is not 100% :-( latest Opera Mini from site Opera (Windows Mobile 6.1, Native Opera Mini, Not Java) - scale is not 100% :-( latest Opera Mini from site Opera (Sony Ericsson W995) - scale 100

How can you pull data from an API to be used in Opera Mini?

南楼画角 提交于 2019-12-13 03:37:23
问题 Opera Mini has no support for the request api , what are the alternative ways of requesting a response from APIs? 回答1: Use XMLHttpRequest. There are various libraries that aim to simplify working with AJAX but you can also use it without any library. axios jQuery.ajax() 来源: https://stackoverflow.com/questions/57888250/how-can-you-pull-data-from-an-api-to-be-used-in-opera-mini

Twitter Bootstrap icons and Opera Mobile :(

…衆ロ難τιáo~ 提交于 2019-12-12 04:39:45
问题 Why icons of Twitter Bootstrap don't displays in Opera Mobile browsers? How to solve the problem? 回答1: Opera Mini doesn't support Web fonts in the first place: Can I use @font-face Web fonts?: Version | Opera Mini ------------------------------------------- Current | 5.0-7.0 [Not Supported (= Red)] 回答2: The HTML file could have a different char set defined. You could try to view it with a different encoding, such as UTF-8. If the charset is UTF-8 the undisplayed character could be from some

Detecting canvas text API support (Opera Mini)

孤人 提交于 2019-12-10 17:37:42
问题 Although Opera Mini does not display canvas text, a typical test indicates that it has an implementation of the text API functions. Is there an alternative technique to check for support? Current method: var context = document.createElement("canvas").getContext("2d"); var canvasTextSupport = typeof context.fillText == "function"; // true in Opera Mini An example you can use to see if text shown: tutorialspoint 回答1: You can use a custom build of the Modernizr library to do that! http:/

Opera Mini Jquery AJAX not loading

依然范特西╮ 提交于 2019-12-07 18:57:02
问题 I have been developing a website for mobile devices. However due to some reasons, AJAX calls are not working on Opera Mini. For Example - one such request for loading more content at the end of page (70%) $(document).scroll(function (e) { if (processing) return false; if ($(window).scrollTop() >= ($(document).height() - $(window).height()) * 0.7) { processing = true; $.ajax({ type: "GET", url: "/ajax/popup-loadmore-test.php", data: { entityid: $("#e").attr("data-id"), version: version } })

Desktop web version and mobile web version in Opera Mini

大城市里の小女人 提交于 2019-12-06 12:54:52
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! There are a number of reasons why Opera Mini is showing the desktop version of the site. The most likely