At Angular Navigation .Designs mixed in windows phonegap app - html

In All application two screens contents get mixed with each other at navigation.
In iphone and android it works fine but not in windows.
I am using angular js 1.2.3, cordova 2.9.1, angular-animate.min.js please help.
When i Click My club after that "home" screen contains and "my Club" screen contains get mixed with each other and then display "my Club" screen

Just Remove css position "Absolute" or "Fixed".
angular animation does't work with this css in windows phone or use jquery to set position fixed or absolute after page load

Related

Check responsive design using chrome

I have a webpage with svg background and form. The background is divided to 2 sections.
Top area - background image / bottom area - background color
Had an issue with some mobile devices, the bottom background comes up behind trees like this.
I have fixed that issue by writing media queries. After that I checked major devices responsive compatibility by chrome device emulator. All are fine. But my client complained me that he was getting that background issue on his device.(microsoft surface pro 4) Then I got back to chrome device emulator and added custom device as a surface pro 4 and set actual resolution.(2736x1824) But it's showing fine on chrome tool. (pc) This is my settings.
I'm getting this error because of not setting up device pixel ratio? or any other way to check mobile compatibility correctly?
There are lot of ad-dons available for testing responsive website on respective devices I used following add on you can try this addons
Responsive Web Design Tester - chrome
toggle Responsive - Mozilla
Just search for this addons and click on the add addons button on respective browser search for respective addons .

In Unity, when building for the Windows Phone 8 (UNITY_WP8), the navigation bar on the bottom is not hidden by default

Quick note that I am making this thread as I could find no similar threads or answers and felt the need to document this.
Problem:
When building with Unity 5.2, in my case, for the Windows Phone 8 (not WSA) the game did not hide the navigation bar, with the back, menu and search buttons. This is a problem if the user's device does not have the navigation bar as hardware buttons.
You can then not hide the buttons after the game launches, causing it to always block the lower part of the screen in portrait mode.
The plugins I am currently using only support WP8, and not WSA, so upgrading was not a choice until the plugins I used release a new version with support for WSA.
Solution:
Open WMAppManifest.xml from the compiled solution created by Unity.
On the <App> tag, change the Genre tag to apps.games.
Example:
<App xmlns="" ProductID="{XXXXXX-XXXXXXXX-XXXXXXX-XXXXXX}" Title="My Game" RuntimeType="Silverlight" Version="1.0.0.0" Genre="apps.games" Author="Alex" Description="" Publisher="Alex" PublisherID="{XXXXXX-XXXXXXXX-XXXXXXX-XXXXXX}">
This will result in the Windows Phone hiding the navigation bar and notifiying the user that they can bring up the navigation bar by swiping upwards from the bottom of the screen.

Fontastic not loading on mobile device

I have a live site at http://www.factormedia.co.za
When you inspect it to phone scale (around 350px width or so) it loads 3 icons in the menu, of a house,laptop and notepad.
However if you had to actually use a phone the images do not appear. So trying to figure out why it is not referencing my font library from fontastic.com.
Works fine in a preview but on the actual device itself.
It seems when you embed using the link they give you works when testing and using anything from a laptop to a desktop, once you scale down it starts to give issues to mobile. To solve this issue the easiest way was to manually download the icons I was using and use them as their own custom font by installing it as the site instructs.
This then solved the problem and it now shows on smaller devices

Windows Phone Navigation transitions blank screen in between transitions

I'm using WP Toolkit to do the transitions between my app pages, it works fine , but I get this strange delay in between transitions while navigating from one page to another, it just shows a blank(black) screen which obviously doesn't look good. I also Need How to implement this in my app. I'd appreciate it if someone can help me with it or suggest another page transition library.

Hide browser address bar on BlackBerry OS6

I'm currently developing HTML 5 mobile web apps. If you add such an app to your homescreen on an iPhone, it pretty much looks like a native app since I am able to hide the mobile safari's address bar. This can be achieved by using some meta-tags within my HTML code.
Now I was wondering if hiding the address bar is also possible on the Blackberry OS 6? Does anyone have an idea if and how this could be achieved? Is there a Blackberry-specific meta-tag?
There is no meta tag available for BlackBerry.
Try to use the window.scrollTo (0,1) function while loading the content into the browser.