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.
「wbanner」を使用してdivを移動する必要がありますが、marginLeftは変数を値として認識しません
$(document).ready(function() { var wbanner = (screen.width/2)-175; $('.banner').hide().show(1000).animate({marginLeft : "+=$('.wbanner')"}, 3000).css('color', '#85bbd7'); )}
次のように使用するだけで、変数を選択する必要はありません。
function() { var wbanner = (screen.width/2)-175; $('.banner').hide().show(1000).animate({marginLeft : "+=" + wbanner}, 3000).css('color', '#85bbd7');