1

我想创建一定大小的公司标签幻灯片。我使用脚本camera.js创建幻灯片,我需要更改图像大小:

<link 
    rel='stylesheet' 
    id='camera-css'  
    href='/html/themes/classic/css/camera.css' 
    type='text/css' media='all'> 

<style>
    .fluid_container {
        margin: 0 auto;
        max-width: 1000px;
        width: 100%;
    }
</style>

<script>
    jQuery(function(){
        jQuery('#camera_wrap_3').camera({
            height: '50%',
            pagination: true,
            thumbnails: false,
            imagePath: '/html/themes/classic/images/'
        });
    });
</script>

<div class="fluid_container">
    <div 
        class="camera_wrap camera_emboss" 
        id="camera_wrap_3">
        <div 
            data-thumb="/thumbs/1.jpg" 
            data-src="/slides/1.jpg" 
            data-time="1500" 
            data-trasPeriod="4000" 
            data-link="some link here" 
            data-target="_blank">
                <div 
                    class="camera_caption fadeFromBottom">
                some text here
                </div>
        </div>
        <div 
            data-thumb="/thumbs/2.jpg" 
            data-src="/slides/2.jpg" 
            data-time="1500" 
            data-trasPeriod="4000" 
            data-link="some link here" 
            data-target="_blank">
                <div 
                    class="camera_caption fadeFromBottom">
                some text here
                </div>
        </div>
    </div>
</div>

<div style="clear:both; display:block; height:100px"></div>

这是一些屏幕截图。

对于max-width == 400px

在此处输入图像描述

对于max-width == 100px

在此处输入图像描述

如何更改尺寸?我需要一个较小的容器,幻灯片应该是310x82.

4

3 回答 3

2

你可以像这样调整高度

        jQuery(function(){

            jQuery('#camera_wrap_3').camera({
                **height: '82px',**
                pagination: true,
                thumbnails: false,
                imagePath: '/html/themes/classic/images/'
            });

        });

但是,我无法影响宽度的任何变化。

于 2012-12-03T21:58:57.597 回答
1
jQuery(function () {
            jQuery('#camera_wrap_1').camera({
                alignment: 'center',
                maxHeight: $('.slider').outerHeight()+"px",
                thumbnails: true
            });
        });

您可以使用 outerHeight 函数进行计算。

于 2017-02-01T15:04:43.530 回答
0

在我的客户购买的主题附带的相机版本中,除了将高度传递给初始化程序之外,还有另一个调整我必须覆盖这种样式,因为它的最小高度为 500px,这使得它不可能成为我需要的高度。

.camera_fakehover {
    min-height:50px;
}
于 2014-05-13T13:38:13.143 回答