当使用jquery插件旋转图像时,我看到我的图像没有显示在div的中心,jquery循环的动画将图像总是移动到左侧,我尝试很多东西但是从不工作并且在自然位置显示图像
我的代码是下一个:
<style>
#web_header_ani_ele_content
{
top:-130px;
position:relative;
width:360px;
height:175px;
border:1px solid;
margin-left:340px;
#web_header_ani_texto
{
position:relative;
width:360px;
height:35px;
border:1px solid;
text-align:center !important;
bottom:-120px;
overflow: hidden;
}
</style>
<div id="web_header_ani_ele_content">
<div id="web_header_ani_texto">
<img src="imagenes/web/header/text_1.png" width="281" height="35" border="1"/>
<img src="imagenes/web/header/text_2.png" width="281" height="35" />
<img src="imagenes/web/header/text_3.png" width="281" height="35" />
</div>
</div>
<script>
jQuery('#web_header_ani_texto').cycle({
fx:'fade',
speed:<?php echo $adm[banner_f_speed];?>,
timeout:<?php echo $adm[banner_f_delay];?>,
containerResize: 0,
nowrap: 0,
pause:1
});
</script>
感谢最诚挚的问候