Tagged Questions
-1
votes
0answers
11 views
iOS 6 and html animations (Adobe Edge)
It seems that Apple changed something related to GPU accelerated CSS animations in iOS 6.
And now I have an app which loads some html+javascript+css animations made with Adobe Edge inside UIWebViews ...
1
vote
1answer
77 views
Remove selection gray shadow from html input on iOS
I'm currently working on html rich text editor for my iOS application,so,the setup is simple,i have a UIWebView loading my editor code,the html input is a 'contentEditable' DIV.
The problem is that ...
1
vote
1answer
38 views
UIWebView. Replace css properties using javascript
The code look likes the following:
<style type=\"text/css\">
html{background: #000; margin: 0; padding: 0}
body {padding: 30px; background: #000;width: 85;margin:0 auto;color: #000;font-family: ...
0
votes
0answers
38 views
Weird Overlap of Elements in iOS (PhoneGap)
I'm working on an iOS/PhoneGap project. I have a weird overlap issue in iOS (screenshot from iPad):
The "Select Status" popover is position: absolute, z-index: 35. The website link is doesn't have ...
0
votes
1answer
45 views
animation-delay in IOS not working correctly
So I know that JS setInterval has issues in ios and android. I recently found that animation-delay in css also has issues. I have a loading spinner that has 8 dots that grow/shrink and the spinner ...
0
votes
1answer
54 views
.css and .js files are not being found by UIWebView
I have added an .html, two .js and one .css file in my project and I have used following code with UIWebView for accessing the .html file
[web1 loadRequest:[NSURLRequest requestWithURL:
...
1
vote
1answer
2k views
Arabic TTF (TrueType font) in UIWebView iOS 4.2.1
Hi
I want to use custom arabic font in UIWebView, I read that iOS 4.2 onwards we can use TTF webfonts.
I have arabic font in my resources and following is the code I am using:
<html>
...
1
vote
3answers
250 views
UIWebView and CSS fixed position
I have a UIWebView that uses a fixed position header.
When the ViewController that contains the UIWebView is the initial view, there is no problem with the fixed position divs.
When I display that ...
3
votes
2answers
110 views
jQuery offset() method in CSS 3 multicolumn
Got some serious issue here, I'am working on an iOS App which has to display an html page in a UIWebView over several columns using CSS multicolum module.
I'm adding the following CSS rule to the ...
0
votes
1answer
65 views
IOS opacity transition not a nice effect
Making some simple animation using CSS and JS for UIWebView; testing and debugging with Chrome;
For animation using this style:
-webkit-transition: opacity 1s ease-out;
setting Opacity from 0 to 1;
...
0
votes
0answers
79 views
UIWebView ContentEditable Paste Issue
I Load an HTML Page with contenteditable div inside my UIWebView.
I use copy: and paste: action for formatting the text.
In IOS 5 it works fine, with IOS 6, when i paste, the system keeps the ...
1
vote
1answer
55 views
Replacing image source with UIImage in UIWebiew
I am writing an application that parses a HTML string embedded with images and data. I am able to use SDWebImage to cache the images part for later use and it is caching perfectly. However, I need to ...
0
votes
1answer
100 views
jQuery Mobile buttons don't change to 'pressed' state immediately when pressed
In a UIWebView containing a simple jQuery Mobile styled button, which looks like:
pressing it does not change it's appearance (to the 'pressed' state with greyish background) immediately, only ...
0
votes
0answers
75 views
UiWebView - CSS Zoom Not Affecting Font Sizes
Got a crazy situation with UIWebView on iOS - which I believe to be using Mobile Safari?
We apply the CSS Zoom element to a with child divs that have css 'font-size' in the style attribute. As ...
2
votes
3answers
2k views
jQuery Mobile sprites not displaying when css included as a local resource in a UIWebView on iPhone
On the iPhone I'm using a UIWebView to display some content that is stored on the device so my content can be viewed on the device when there is no internet connection. I'm using the jQuery and ...