如何访问fotorama活动框架的高度和宽度属性?

时间:2017-01-09 20:37:17

标签: javascript jquery fotorama

单击按钮但我无法访问图像属性时,我需要在活动框架中调整当前图像的大小。我不想仅仅改变当前图像的fotorama大小。

这是我的代码

#include <stdio.h>
int main()
{
    float a = 0;
    do 
     {
         // Here we will ask fo the change.
         printf("How much change do I owe?\n");
         scanf("%f",&a);
         // Use of new function round which will round off the float and conver it to int or any specified number format.
         a = (int)(a * 100);
         printf("%f", a);
     }
     while (a <= 0);
    return 0;
}

1 个答案:

答案 0 :(得分:0)

您可以使用代码onclick = zoomIn()在img元素中添加onclick attr;然后将JQuery代码设置如下:

unction zoomIn() {
        try {           

          $('#fotorama').css({"width":"250px","height":"250px"});
        }
        catch (error) {
           alert(error.Message);
       }
   }