Rocky Mountain National Park - Trail Ridge Road time-lapse. This is from the Grand Lake entrance to the parking lot a Bear Lake. I shot this while I was on vacation in mid September. Enjoy.

Kaledo Art
he wasn't even looking at me and he found me
One Nice Bug Per Day
Cosmic Funnies
"I'm Dorothy Gale from Kansas"
noise dept.
tumblr dot com


JBB: An Artblog!


blake kathryn
we're not kids anymore.

titsay

⁂
taylor price
dirt enthusiast
i don't do bad sauce passes
AnasAbdin

seen from Türkiye

seen from Malaysia
seen from United States

seen from Germany
seen from United Kingdom

seen from United States

seen from United States
seen from Germany
seen from Czechia
seen from Canada

seen from United States

seen from United States

seen from Germany

seen from Türkiye

seen from Indonesia

seen from Switzerland
seen from United States
seen from Italy

seen from United States
seen from United Kingdom
@bsjohnson
Rocky Mountain National Park - Trail Ridge Road time-lapse. This is from the Grand Lake entrance to the parking lot a Bear Lake. I shot this while I was on vacation in mid September. Enjoy.

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Fixing jQuery Mobile's 'none' transition flicker in PhoneGap
I thought I'd post a solution I found to the notorious white flickering problem that occurs in jQuery Mobile with page transitions, even when the transition is set to 'none'.
It was driving me nuts that I couldn't fix this problem after trying every solution I found on the web. Removing gradients, rounded corners, box shadows, scrolling style fixes; nothing worked. After some experimentation and a bit of dumb luck, I noticed the problem went away if I removed the meta viewport tag in head.
Specifically, I changed it from:
<meta name="viewport" content="width=device-width, initial-scale=1">
to:
<meta name="viewport" content="width=device-width, user-scalable=no" />
I've yet to see any negative effects caused by this, but I haven't thoroughly tested it on a wide variety of devices. So far it appears to make page transitions much smoother in jQuery mobile. I'm sure this would cause problems if viewed in a normal mobile browser, but in PhoneGap's closed environment, it might be an acceptable solution.
This has only been tested with jQuery Mobile 1.8.3 in PhoneGap 2.3.0.
EDIT: What this does (I think): The initial-scale attribute basically tells the browser what zoom level to start at when loading the page. My guess is that when this is defined, the embedded WebView browser in PhoneGap recalculates page scaling on every page refresh, which is expensive. Since PhoneGap is meant to emulate a native application, disabling user scaling will probably be acceptable for most basic apps that won't require any pinch-to-zoom functionality. Removing the meta tag can cause some problems on tablets as they won't properly calculate the WebView's width and height. However, disabling scaling seems to do the trick while not having a huge effect on tablets. Again, I haven't thoroughly tested this, but it seems to solve the problem. This coupled with the other flicker solutions sprinkled across the web might just be enough to make transitions feasible.