Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ImageFlow display default width height

Has anyone here worked with http://finnrudolph.de/ImageFlow/ it resizes my images, and I want them to look bigger, I've played with the settings...but....So can anyone help me? I want the imagesz to be displayed at 80-90% of the original width and height

like image 481
Uffo Avatar asked Nov 06 '22 09:11

Uffo


1 Answers

Try increasing the values of the following properties:

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

Try:

  1. imageFocusM = 1.8
  2. imagesHeight = 1.2
  3. imagesM = 1.8

Also, very important, don't forget about the height and width attributes on the img:

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

like image 163
JohnB Avatar answered Nov 09 '22 11:11

JohnB