との境界線の色をアニメーション化することはできません:は、私は、このテーブルを持っているjQueryの
<table id="social" border="5">
<tr>
<td>
<iframe src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fyannbane.blogspot.com%2F&send=false&layout=button_count&width=100&show_faces=true&action=like&colorscheme=light&font&height=21&appId=177127339057410" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:100px; height:21px;" allowTransparency="true"></iframe>
</td>
<td>
<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://yannbane.blogspot.com/" data-via="Yannbane">Tweet</a>
</td>
<td>
<g:plusone></g:plusone>
</td>
</tr>
</table>
そして、私はこのように、jQueryを使ってその境界をアニメーション化したいと思います:
$("#social").animate({"borderTopColor": "#f00", "borderBottomColor": "#fff"}, 800);
しかし、それはdoesnの仕事はありません!何も
私もこれを試してみた...でも、エラーが示されていない、まったく起こりません:
$("#social").animate({"border-top-tolor": "#f00", "border-bottom-color": "#fff"}, 800);
しかし、同じ結果と
...あなたがこれを行うにはどうすればよいですか? jQuery animate referenceから
[jQueryアニメーションの境界線の色はホバーですか?](http://stackoverflow.com/questions/813493/jquery-animate-border-color-on-hover) – epascarello
@epascarello OPが使用していることは示されていませんThe Color Plugin – Basic