rstacruz / jquery.transit

Super-smooth CSS3 transformations and transitions for jQuery
http://ricostacruz.com/jquery.transit
7.3k stars 864 forks source link

transit broken on iOS 8 safari? #213

Open andrewsmallbone opened 9 years ago

andrewsmallbone commented 9 years ago

Only just started using transit and haven't been able to test on a pre iOS 8.0 yet. Following test page doesn't do anything. $.support.transition is undefined

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="apple-mobile-web-app-capable" content="yes"/>
    <meta name="apple-mobile-web-app-status-bar-style" content="black">
    <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width" />
</head>
<body>
<div id="pages" >
    <div id="stage" style="width:100px; height:100px;">hello</div>
</div>

<script src="js/jquery-1.9.1.min.js"></script>
<script src="js/jquery.transit.min.js"></script>

<script>
    $(document).ready( function() {
        $("#stage").transition({x:"100px;"});
    });
</script>
</body>
</html>
DimitryDushkin commented 9 years ago

Confirm. jQuery 2.0 + latest transit not working

rstacruz commented 9 years ago

can anyone help debug the issue?

AshMartian commented 9 years ago

I too am having issues with transit on iOS. Fortunately my plan B is to use CSS transitions, unfortunately however is how bad the performance is.