如何使用 if else 语句将 wordpress 选项设置值作为条件来切换 jquery 功能?
Wordpress 选项设置值是“选择类型”值,在我的模板中使用
<?php echo get_option('my_animation_module') ?>
到目前为止,它可能只打印一个值,如animation1、animation2、animation3等等。
我想将此选项值作为条件在 jquery 中传递,以使用此 wordpress 选项值获得不同的动画效果。
HTML:
<div id="content-page>
<img src="images/myimage.png"/>
<div>
查询:
$(document).ready(function(){
$('#content-page').hover(function() {
$(this).find('img').stop(false,true).animate({'top':480, 'left':270}, {duration:600});
},
function() {
$(this).find('img').stop(false,true).animate({'top':0, 'left':270}, {duration:500});
});
});
这是我第一个使用 jQuery 的示例动画效果。我想在图像上添加不同的动画效果,并且使用 jQuery 中的 if else 语句和 wordpress 选项值作为条件来打乱这些效果。