- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在制作一个无限循环的旋转木马,一次渲染 2 个图像。我目前有一个 div,它是 slider 。在里面我有一个 <ul>
在里面我有五个<li>
.现在我将 slider 的宽度设置为屏幕的宽度,高度设置为 1080。我希望隐藏列表中溢出的元素。
出于某种原因,它们并没有被隐藏,而只是粘在轮播图片的底部。我怎样才能让它们真正隐藏起来?
body {
height: 100%;
width: 100%;
margin: 0%;
padding: 0%;
background-color: antiquewhite;
}
#app {
height: 1080px;
width: 100%;
}
#slider {
overflow: hidden;
height: 100%;
width: 100%;
display: inline-block;
}
.slides {
display: inline-block;
height: 100%;
width: 100%;
margin: 0px;
padding: 0px;
}
.slide {
display: inline-block;
list-style-type: none;
width: 49.3%;
height: 100%;
margin: 5px;
background-image: url('http://via.placeholder.com/1000x1000');
}
#title {
position: absolute;
margin-left: auto !important;
margin-right: auto !important;
margin-top: 150px;
font-size: 32px;
text-align: center;
padding: 8px;
border: 4px solid white;
}
#caption {
position: absolute;
width: 350px;
font-size: 22px;
margin-left: auto !important;
margin-right: auto !important;
margin-top: 250px;
}
<body>
<div id="app">
<!-- this crousel will be able to look infinitiey. I will do this by assigning
a set of images a number or id value. Once the user has cycled to the last
image, it will reset the cycle and start from the beginning.
Point 1 => image 1 and 2
Point 2 => image 2 and 3
Point 3 => image 3 and 4
Point 4 => image 4 and 5
Cycle Reset -->
<button id="previous" onclick="previousItem()"><</button>
<div id="slider">
<ul class="slides">
<li class="slide 0">
<div>
<span id="title">Vega</span>
<span id="caption">Vega is one of the leading global plant-based nutrition companies.</span>
</div>
</li>
<li class="slide 1">
<div>
<span id="title">EightSleep</span>
<span id="caption">Eight has developed the world\'s first smart mattress.</span>
</div>
</li>
<li class="slide 2">
<div>
<span id="title">The Hundereds.com</span>
<span id="caption">The Hundereds Shopify Plus eCommerse site features a 100% custom and seamless Wordpress integraion.</span>
</div>
</li>
<li class="slide 3">
<div >
<span id="title">PRG Nation</span>
<span id="caption">InnerSelf Technologies hopes to create4 a PRG Nation, built around their new bio-stimulant and monitoring system.</span>
</div>
</li>
<li class="slide 4">
<div>
<span id="title">Qualo.com</span>
<span id="caption">Immerseive, highly-branded, and customer-focused shopping experience.</span>
</div>
</<body>
<div id="app">
<!-- this crousel will be able to look infinitiey. I will do this by assigning
a set of images a number or id value. Once the user has cycled to the last
image, it will reset the cycle and start from the beginning.
Point 1 => image 1 and 2
Point 2 => image 2 and 3
Point 3 => image 3 and 4
Point 4 => image 4 and 5
Cycle Reset -->
<button id="previous" onclick="previousItem()"><</button>
<div id="slider">
<ul class="slides">
<li class="slide 0">
<div>
<span id="title">Vega</span>
<span id="caption">Vega is one of the leading global plant-based nutrition companies.</span>
</div>
</li>
<li class="slide 1">
<div>
<span id="title">EightSleep</span>
<span id="caption">Eight has developed the world\'s first smart mattress.</span>
</div>
</li>
<li class="slide 2">
<div>
<span id="title">The Hundereds.com</span>
<span id="caption">The Hundereds Shopify Plus eCommerse site features a 100% custom and seamless Wordpress integraion.</span>
</div>
</li>
<li class="slide 3">
<div >
<span id="title">PRG Nation</span>
<span id="caption">InnerSelf Technologies hopes to create4 a PRG Nation, built around their new bio-stimulant and monitoring system.</span>
</div>
</li>
<li class="slide 4">
<div>
<span id="title">Qualo.com</span>
<span id="caption">Immerseive, highly-branded, and customer-focused shopping experience.</span>
</div>
</li>
</ul>
</div>
<button id="next" onclick="nextItem()">></button>
</div>
<script src="app.js"></script>
<!-- <script src="bundle.js"></script> -->
</body>li>
</ul>
</div>
<button id="next" onclick="nextItem()">></button>
</div>
<script src="app.js"></script>
<!-- <script src="bundle.js"></script> -->
</body>
我似乎无法让它工作。我希望它们水平并排堆叠,然后将它们从右向左移动。
最佳答案
.slide > div {
position: relative;
}
关于jquery - 用轮播 overflow hidden ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54383719/
我想知道是否有任何方法可以调用和使用 overflow:hidden 隐藏得很好的东西。 为了阐明我的意思,在 this example我想知道“This is hidden”是div的隐藏部分。 这
如果我们有以下HTML StackOverflow 使用以下 CSS * { margin: 0; padding: 0; } #i { overflow:
我正在使用 jQuery 制作幻灯片,我有几张图片应该一次滑入一张图片。我正在使用宽度与图像宽度相同的 div:80 像素。我使用了 white-space:no-wrap 和 overflow:hi
如果我有一个样式为 overflow: hidden; 的 div,我发现有时键盘操作会导致 div 滚动。而且由于没有滚动条,所以真的没有办法让 div 回到原来的状态。除了指定样式以防止出现这种情
我有一个 UIImageView,在表格单元格中有一个自定义类,它也使用一个自定义类。 UIImageView 作为单元格自定义类的属性连接。 UIImageView 有一个调用方法的 UITapGe
我正在创建一个网站,在一个 div 中我有一个视频,但我不想在移动设备上显示这个视频,所以我使用 hidden-xs 和 hidden-sm,到目前为止一切顺利。 但是,我的问题是,当我使用这些类时,
我对 C++ 可见性属性有疑问。我已阅读 http://gcc.gnu.org/wiki/Visibility但我不太明白它是如何工作的。 我想在我拥有的一些共享库中隐藏可见性。我相信这意味着符号被隐
我通过CSS的草图创建了一个菱形,它位于一个圆圈的左上角。 我为圆圈设置了overflow: hidden。钻石怎么还能触发cursor: pointer? 这是 project 的代码笔. html
这个问题在这里已经有了答案: Shape with a slanted side (responsive) (3 个答案) 关闭 3 年前。
在使用 Angular Material 时,我一直在看到 aria 属性。有人可以向我解释一下 aria 前缀是什么意思吗?但最重要的是我想了解的是 aria-hidden 和 hidden 属性之
我正在阅读有关 aria 使用的一些内容,并遇到了以下文档: Fourth Rule of ARIA Use 。我不清楚的一个部分是: "Applying aria-hidden to a paren
以下是我的简单导航代码。单击右上角的图标时会出现两个 div。我还在顶部使用 :before 实现了这些分区的三 Angular 形提示。对于第一个 div,我设置了 overflow:scroll
input[type=hidden] 和 visibility : hidden; 有什么区别? 最佳答案 第一个是输入元素,第二个是CSS2中的样式。 visibility: hidden; vis
我遇到了一个奇怪的问题,似乎与浏览器相关(IE9 及更低版本与 IE11),但想知道为什么会出现奇怪的行为。 问题描述:我使用 Spring 框架并使用其相关标签库来检索 JSP 上的数据。有一个称为
我在 viewDidLoad 中的两个 UIView 上将 hidden 属性设置为 YES。单击按钮时,它们将设置为 NO,因此将显示它们。如何在每次单击按钮时使这些属性在是/否之间切换? 最佳答案
我正在尝试使用树状列表实现侧边栏。我希望树中的每个元素只填充一行——没有溢出,没有换行/换行。 overflow: hidden; 可能是一个很好的解决方案,但还有另一个要求 - 每行都有一个绝对 d
我想用 overflow: hidden 隐藏一个超出容器的标题: HTML: Heading CSS: div { overflow: hidden; } h1 { transfor
我对 overflow:hidden 和 body 标签有疑问。这是一个小例子 主体版本(不工作) http://jsfiddle.net/5hGSp/13/ DIV 版本(有效)
html 的“隐藏”属性是一个 bool 值,不需要设置值。仅仅存在就足够了。 “aria-hidden”属性怎么样?光有存在感就够了吗?或者它是否需要设置值“true”? 最佳答案 aria-hid
在我的页面上,我有一个导航菜单和两个内容容器。 内容容器使用overflow:hidden 以便一次只有一个子div 显示。 我希望导航链接充当相关内容的激活器,以便在容器中滚动查看。 因此,例如,如
我是一名优秀的程序员,十分优秀!