Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
検証が失敗したときに、テキストボックス内のテキストにシェイク効果を提供したいと思います。同じためのjQueryコードを提案できますか。
正確な要件を示すリンクを次に示します。ここをクリック
ありがとうございました。
のようなことをしているかもしれません
function shakeText(selector){ $(selector).animate({'padding-left' : '5'} , 1000 , function(){ $(selector).animate({'padding-left' : '0'} , 1000)} ); } shakeText('#element')
ここにjsfiddleがあります