我不太确定这里有什么问题。我已经包含了 jQuery UI,这样我就有了颜色兼容性。
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/jquery-ui-1.10.0.custom.js"></script>
我之前也尝试过使用 jQuery 颜色插件。
我想更改字体颜色,但我的代码似乎不起作用。我添加了 backgroundColor 来测试它并且有效。
如果您有任何想法为什么它不起作用,请告诉我。
$('.menu-item').mouseover(function() {
$(this).animate({
color: '#fff',
backgroundColor: '#000000',
}, 500, function(
) {
});
});
$('.menu-item').mouseleave(function() {
$(this).animate({
color: '#fff',
backgroundColor: '#ffffff',
}, 500, function(
) {
});
});