MooTools 图像列表
我有这个 HTML:
<div id='cont'>
<img src='1.jpg' />
<img src='2.jpg' />
<img src='2.jpg' />
</div>
<a href='#'>Prev</a>
<a href='#'>Next</a>
使用这个 CSS:
#cont{
position: relative;
float: left;
height: 90px;
width: 120px;
}
#cont img {
display:block;
position:absolute;
top:0;
left:0;
z-index: 1;
}
单击 Next 和 Prev 我需要显示图像。使用 MooTools 执行此操作的最简单方法是什么?
I have this HTML:
<div id='cont'>
<img src='1.jpg' />
<img src='2.jpg' />
<img src='2.jpg' />
</div>
<a href='#'>Prev</a>
<a href='#'>Next</a>
with this CSS:
#cont{
position: relative;
float: left;
height: 90px;
width: 120px;
}
#cont img {
display:block;
position:absolute;
top:0;
left:0;
z-index: 1;
}
clicking Next and Prev I need to show images. What is the easiest way to do this with MooTools?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
奇怪的是,昨天刚刚在我的博客上写了一篇关于如何在 mootools 中执行此操作的教程。
http://fragged .org/tutorial-write-a-small-content-slider-class-in-mootools-and-extend-it_1321.html
实际代码适合与任何类型的绝对元素,因此它可以轻松地为您工作。下一个和上一个是图像,但您可以用锚点替换它们。
这里有两个类(基本类和扩展类,用于不同的效果):
html:
等等等,玩得开心
oddly enough, just wrote a tutorial on how to do this in mootools on my blog yesterday.
http://fragged.org/tutorial-write-a-small-content-slider-class-in-mootools-and-extend-it_1321.html
the actual code is geared up to work with any kind of absolute elements so it can easily work for you. next and previous are images but you can replace them with anchors.
here are the two classes (the base and the extended one for the different effect):
the html:
etc etc. have fun