ボーダーとjQueryアニメーション関数を使用してボタンクリックをアニメーション化しようとしています。
jQuery( '#sendForm' ).hover( function (){
jQuery( this ).animate({
borderTopWidth: "5px",
borderBottomWidth: "0px"
}, 'fast' );
}, function (){
jQuery( this ).animate({
borderTopWidth: "0px",
borderBottomWidth: "5px"
}, 'fast' );
});
何らかの理由で、上部の境界線はアニメーション化せず、下部のみをアニメーション化します。
アップデート
.submitButton {
padding: 10px;
border: 0px;
border-bottom: 5px solid #1B5A81;
background-color: #267DAD;
color: white;
font-weight: bold;
}