1

我正在为投资组合画廊实现一个可滚动的。

(scrollable = 来自http://flowplayer.org/tools/index.html的可滚动插件)

一次只能看到一个项目。

默认情况下,可滚动将上一个/下一个按钮放置在图像区域之外,单击当前图像会推进可滚动内容。

  1. 我想在图像区域内进行上一个/下一个渲染。
  2. 当鼠标悬停在图像的下部时,我希望出现图像标题。

样机:http : //i303.photobucket.com/albums/nn160/upstagephoto/mockups/scrollable_mockup.jpg

关于如何实现其中一项或两项的任何想法?

谢谢!

4

2 回答 2

0

您的方法的主要部分将在您的 html 中如下所示:

<div id="mainContainer">
  <div class="scrollable">
    <div class="items">
      <div class="scrollableEl">
         <img src="yourimage.jpg" />
         <div class="caption">Your caption</div>
      </div>

      <div class="scrollableEl">
         <img src="yourimage2.jpg" />
         <div class="caption">Your caption 2</div>
      </div>

      ... so on ...
    </div>
  </div>
  <a href="#" class="prev">&laquo;</a>
  <a href="#" class="prev">&laquo;</a>
</div>

就像在你的 CSS 中一样:

.scrollable {
    position:relative;
    overflow:hidden;
    width: 660px;
    height:90px;
}

.scrollable .items {
    width:20000em;
    position:absolute;
}

.items .scrollableEl {
    float:left;
    positon: relative;
}

.items .scrollableEl .caption {
    display:none;
    position: absolute;
    bottom: 0;
    height: 100px;
    width: 660px;
}

.items .scrollableEl:hover .caption { /*this will show your caption on mouse over */
    display:none;
}

.next, .prev {
    position: absolute;
    top: 0;
    display: block;
    width: 30px;
    height: 100%;
}
.next {
    right: 0;
}
.prev {
    left: 0;
}
#mainContainer {
    position: relative;
}

javascript应该是相当标准的。希望这可以帮助!

于 2010-05-06T23:09:37.007 回答
0

演示: http: //jsbin.com/ijede/2 来源:http: //jsbin.com/ijede/2/edit

$(function() {
    // 5 minute slide show ;-)
    $('.next,.prev').click(function(e) {
        e.preventDefault();
        var pos = parseInt($('.current').attr('id').split('_')[1]);
        var tot = $('.slides a').size() - 1;
        var click = this.className;
        var new_pos = (click == 'next') ? pos + 1: pos - 1;
        var slide = ( click == 'next') ? 
                    (pos < tot ? true : false) : (pos > 0 ? true : false);

        if (slide) $('.current').toggle(500,function() {
          $(this).removeClass('current');
        });
        $('#pos_' + new_pos).toggle(500,function() {
            $(this).attr('class', 'current');
        });
    });
    //cross-browser div :hover
    $('.next,.prev').hover(function() {
      $(this).children().children().fadeIn(500);
    },function() {
      $(this).children().children().fadeOut(500);
    });
    //auto add unique id to each image
    $('.slides a').each(function(e) {
        $(this).attr('id', 'pos_' + e);
        if (!e) $(this).attr('class', 'current');
    });
});​

CSS源代码!

注意:因为阅读插件文档比从头开始制作幻灯片需要更多的时间,所以我制作了一个新的!

希望你喜欢!

于 2010-05-10T18:33:18.543 回答