jquery
<script>
$(document).ready(function(){
$("button").click(function(){
$("h2").animate({backgroundColor: '#00f', width: '50%', marginLeft: '50px'});
});
});
</script>
html
<h2>This is a heading</h2>
<p style="background: #ff0">This is a paragraph.</p>
<p>This is another paragraph.</p>
<button>Click me</button>
私はjqueryを学んでおり、cssを使用してテストでこれが好きであることがわかりましmargin-left
たmarginLeft
が、marginLeft
機能しbackgroundColor
ませんでした。私はここにいますか、それとも何か間違っていますか?