我已经搜索了以下解决方案。我正在尝试使用 jQuery 为列表项设置动画。这是我的脚本:
$(document).ready(function() {
$('li').hover(function() {
$(this).animate({paddingLeft: '+=15px'}, 200);
},
function() {
$(this).animate({paddingLeft: '-=15px'}, 200);
});
});
这是CSS:
ul {
font-family: Garamond, serif;
list-style-type: square;
}
我已经检查过我是否正确调用了脚本。
任何人都可以帮助我吗?