From 87763af6446e6b21b151a3cac17e66fce7cfa26b Mon Sep 17 00:00:00 2001 From: Antoine Abt Date: Mon, 26 Mar 2012 22:19:00 +0200 Subject: [PATCH] add css transition for mobile examples --- examples/style.mobile.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/examples/style.mobile.css b/examples/style.mobile.css index d0775bd464..7dfb35ab2e 100644 --- a/examples/style.mobile.css +++ b/examples/style.mobile.css @@ -40,3 +40,9 @@ div.olControlZoom a:hover { background: rgba(0, 0, 0, 0.3); } } +.olTileImage { + -webkit-transition: opacity 0.2s linear; + -moz-transition: opacity 0.2s linear; + -o-transition: opacity 0.2s linear; + transition: opacity 0.2s linear; +}