gpt4 book ai didi

jquery - 溢出:hidden not removing horizontal scrollbar from jQuery cycle in IE

转载 作者:行者123 更新时间:2023-12-01 08:12:22 25 4
gpt4 key购买 nike

我正在使用 jQuery.cycle 来显示三个图像。与本网站上的其他答案保持一致,我使用了 min-width 的组合。和overflow:hidden删除水平滚动条,该滚动条仅出现在 Internet Exploder Nein 中。

如果相关的话,该网站同时使用 Yii 框架和蓝图。

水平滚动条不会消失。为什么?

行动

<?php
class IndexAction extends CAction
{
public function run()
{
$ds = DIRECTORY_SEPARATOR;
$cs = Yii::app()->clientScript;

$cs->registerScriptFile( $ds. 'js' . $ds .
'jquery.cycle.all.js', CClientScript::POS_HEAD );

$cs->registerScript( 'cycle', "$('.pics').cycle({
fx: 'scrollLeft',
containerResize: false,
slideResize: false,
width:960,
height:300,
fit:true
});", CClientScript::POS_END );

$this->controller->render('index');
}
}

查看

<?php
Yii::app()->clientScript->registerCss('ServicesCycleSlideShow',"
.pics {
min-width:960px;
height:300px;
padding:0;
margin:0;
overflow:hidden;
}

.pics img {
padding: 0;
margin: 0;
border: none;
min-width: 960px;
height: 300px;
overflow:hidden;
}");
?>
<div class="pics">
<img src="/images/1.png" width="960" height="300" />
<img src="/images/2.png" width="960" height="300" />
<img src="/images/3.png" width="960" height="300" />
</div>

最佳答案

我发现了问题。 jQuery.cycle 引入了 overflow-x:scroll,它优先于 overflow:hidden。添加 overflow-x:hidden 会删除滚动条。

关于jquery - 溢出:hidden not removing horizontal scrollbar from jQuery cycle in IE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12770143/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com