问题描述
- jQuery自动排版,急在线等
-
一横排8张图片,我隐藏右边jQuery如何让其余图片自动向右靠
解决方案
右浮动布局就好了,
<style>
.floatright img{float:right;margin-left:5px}
</style>
<div class="floatright">
<img alt="image1"/>
<img alt="image2"/>
<img alt="image3"/>
<img alt="image4"/>
<img alt="image5"/>
</div>
<script src="http://www.crazyjs.org/demo/calendar/js/jquery.js"></script>
<script type="text/javascript">
setTimeout(function(){$('div.floatright img:eq(3)').hide();$('div.floatright img:eq(2)').hide()},1000)
</script>
解决方案二:
太抽象了。你应该详细说说具体的html 怎么
解决方案三:
html有8个,因权限问题,有的人只能看其中的几个,而其余用jquery的hide()隐藏,隐藏起来周围的图片会向其靠拢,而不向最右边靠拢。
原始8张图片是并排靠最右边,能不能让图片自动向最右边靠拢
解决方案四:
请使用绝对定位,谢谢
时间: 2025-01-20 21:25:48