ImageFlow显示默认宽度高度

时间:2010-09-08 00:12:04

标签: javascript css image

有没有人在这里与http://finnrudolph.de/ImageFlow/合作,它调整了我的图像大小,我希望它们看起来更大,我玩过设置......但是......所以有人可以帮助我吗?我希望imagesz以原始宽度和高度的80-90%显示

5 个答案:

答案 0 :(得分:2)

尝试增加以下属性的值:

Name               Default value   Purpose
--------           -------------   -------
imageFocusM        1.0             Percent size of image in focus (1.0 = 100%)
imagesHeight       0.67            Percent height of main div container (.67 = 67%)
imagesM            1.0             Percent size of all images (not just in focus image)
percentLandscape   118             Scale of landscape images
percentOther       100             Scale of portrait or square images

尝试:

  1. imageFocusM = 1.8
  2. imagesHeight = 1.2
  3. imagesM = 1.8
  4. 另外,非常重要,不要忘记img上的高度和宽度属性:

    <img src="images/image1.jpg" width="400" height="275" alt="Image 1" />

答案 1 :(得分:0)

你试过过imagesM设置吗? 在你的情况下:

var imgFlow = new ImageFlow();
imgFlow.init({ImageFlowID: 'your-flow-id-goes-here', aspectRatio: 1.0, imagesM: 0.8

这可能有效。

答案 2 :(得分:0)

之前我曾经使用过它,我认为你需要调整“aspectRatio”。它默认为1.964尝试更改值,看看你得到了什么结果。

答案 3 :(得分:0)

imagesM:            0.6,            /* Multiplicator for all images in percent */

答案 4 :(得分:0)

试试这个,

$(window).load(function(){
     var reflection_2 = new ImageFlow();
     reflection_2.init({
          ImageFlowID: 'reflection_2',
          imageCursor: 'pointer',
          circular: true,
          reflections: false,
          buttons: true
     });
});

在窗口加载后加载ImageFlow插件