'right'属性をpxの値からパーセントの値に変更しようとすると、jquery-uiswitchClassによって実行されるアニメーションで問題が発生します。この問題はChromeでのみ発生します(FireFoxまたはIEで動作します)。
アニメーションは、divの正しい属性を「90px」から「20%」に変更する必要がありますが、divは最初に画面の他の部分に移動します。デバッガツールを調べると、pxは%として解釈されているようです。値のシーケンスは90px、89%、88%、... 21%、20%です。
次のコードは問題を再現します:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.21/jquery-ui.min.js"></script>
<style>
.class1 {width:100px; height:50px; position:absolute; right:90px; background-color:#F9EDBE;}
.class2 {width:100px; height:50px; position:absolute; right:20%; background-color:#F9EDBE;}
</style>
</head>
<body>
<div id="myDiv" class="class1" onclick="$('#myDiv').switchClass('class1', 'class2', 5000);">Click me</div>
</body>
よろしくお願いします。