- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试实现某种按钮控制的幻灯片放映,其中包括用于页面顶部全 Angular 图片的 div
,用于页面顶部的 div
页面底部的另一张全 Angular 图片和中央内容的最终 div
(包括控制“幻灯片放映”的按钮)。
所以,基本上,中央 div 上的按钮会触发顶部和底部 div 上的图片更改。当没有按钮处于事件状态时,每个 div 上都有一个“中性”图片;当一个激活时,顶部和底部图片都切换为其他图片。
我实际上设法做到了这一点,使用 Flexbox 进行 div
定位,并使用 jQuery 根据激活的按钮显示/隐藏图片。
但我的问题是我无法真正为我的图片设置动画(滑动、淡入淡出...);它们被放置在各自 div
的背景中;我试过同时显示所有,希望一个显示在另一个后面,但似乎只有第一个在显示。
我的问题是:是否有可能让 Flexbox 元素堆积起来,这样我就可以堆叠两个 div,一个在另一个之上,让我产生“发现”效果(因此我需要第一个 div 在滑入的前面的后面和第二个 div)?
这是我的代码(抱歉,选择器部分是法语的,我没有包含图片):
@import 'https://fonts.googleapis.com/css?family=Raleway:300,300i,400,400i,700,700i';
body,
html {
height: 100%;
font-size: 16px;
}
#flex-container {
display: flex;
height: 100%;
background: grey;
flex-direction: column;
overflow: hidden;
}
#bloc-central {
height: 180px;
width: 100%;
border-top: 3px solid #fff;
border-bottom: 3px solid #fff;
padding: 5px 0;
align-self: center;
order: 2;
z-index: 9999;
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
margin: auto;
}
#bloc-central-in {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
background: #fff;
}
/* ==================
FONDS HAUT ET BAS
================== */
/* ----- POSITIONNEMENT DES 2 FONDS ----- */
#background-top,
#background-bottom {
width: 100%;
min-height: 50%;
z-index: 1;
position: relative;
}
#background-top > *,
#background-bottom > * {
min-height: 100%;
background-size: cover;
}
#background-top {
align-self: flex-start;
order: 1;
}
#background-bottom {
align-self: flex-end;
order: 2;
}
/* ----- FONDS NEUTRES ----- */
.background-neutre-top {
background: #f00 no-repeat center 50% fixed;
}
.background-neutre-bottom {
background: #f00 no-repeat center -50% fixed;
}
/* ----- FONDS MODE ----- */
.background-mode-top {
background: #bbb no-repeat center 50% fixed;
}
.background-mode-bottom {
background: #bbb no-repeat center -50% fixed;
}
/* ----- FONDS COIFFURE ----- */
.background-coiffure-top {
background: #313131 no-repeat center 50% fixed;
}
.background-coiffure-bottom {
background: #313131 no-repeat center -50% fixed;
}
/* ----- FONDS INSTITUT ----- */
.background-institut-top {
background: #000 no-repeat center 50% fixed;
}
.background-institut-bottom {
background: #000 no-repeat center -50% fixed;
}
#bloc-univers {
align-self: center;
}
#select-univers {
font-family: 'Raleway', sans-serif;
font-weight: 300;
font-style: italic;
font-size: 1.125em;
color: #c9c9c9;
}
.titre-ligne {
text-align: center;
display: flex;
flex-direction: row;
justify-content: center;
padding: 0 15px;
margin: 0 0 10px 0;
}
.titre-ligne:before,
.titre-ligne:after {
flex-grow: 1;
height: 1px;
content: '\a0';
background-color: #ddd;
position: relative;
top: 0.5em;
}
.titre-ligne:before {
margin-right: 10px;
}
.titre-ligne:after {
margin-left: 10px;
}
.btn-univers:link,
.btn-univers:visited {
display: inline-block;
width: 100%;
height: 50px;
border: 1px solid #c9c9c9;
font-family: 'Raleway', sans-serif;
font-weight: 300;
font-size: 1.750em;
text-align: center;
text-decoration: none;
line-height: 50px;
color: #c9c9c9;
transition: all .2s ease-in-out;
}
#btn-mode:hover {
color: #f08945;
border: 1px solid #f08945;
}
#btn-coiffure:hover {
color: #0fc798;
border: 1px solid #0fc798;
}
#btn-institut:hover {
color: #3f9cf2;
border: 1px solid #3f9cf2;
}
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"/>
<div id="flex-container">
<div id="background-top">
<div class="background-neutre-top"></div>
<div class="background-mode-top"></div>
<div class="background-coiffure-top"></div>
<div class="background-institut-top"></div>
</div>
<div id="background-bottom">
<div class="background-neutre-bottom"></div>
<div class="background-mode-bottom"></div>
<div class="background-coiffure-bottom"></div>
<div class="background-institut-bottom"></div>
</div>
<div id="bloc-central">
<div id="bloc-central-in">
<div class="container">
<div id="logo-viceversa" class="col-md-6">LOGO</div>
<div id="bloc-univers" class="col-md-6">
<div class="row text-center" id="select-univers">
<span class="titre-ligne">CHOISISSEZ VOTRE UNIVERS</span>
</div>
<div class="row">
<div class="col-md-4">
<div><a id="btn-mode" class="btn-univers" href="#">MODE</a>
</div>
</div>
<div class="col-md-4">
<div><a id="btn-coiffure" class="btn-univers" href="#">COIFFURE</a>
</div>
</div>
<div class="col-md-4">
<div><a id="btn-institut" class="btn-univers" href="#">INSTITUT</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
非常感谢!
最佳答案
我用 z-index
和 opacity
在图像之间做淡入淡出,也许代码不是很干净,但你可以接受这个想法:
$(".btn-univers").click(function() {
var buttonId = $(this).attr('id').split('-');
var buttonName = buttonId[1];
var bgTop = ".background-" + buttonName + "-top";
var bgBottom = ".background-" + buttonName + "-bottom";
$("#background-top > div").each(function() {
var zIndex = $(this).css("z-index");
if (zIndex == 2) {
$(this).css("z-index", "1")
}
if (zIndex == 3) {
$(this).css("z-index", "2")
}
});
$("#background-bottom > div").each(function() {
var zIndex = $(this).css("z-index");
if (zIndex == 2) {
$(this).css("z-index", "1")
}
if (zIndex == 3) {
$(this).css("z-index", "2")
}
});
if ($(bgTop).css("z-index") != 2) {
$(bgTop).css({
"z-index": "3",
"opacity": "0"
}).animate({
opacity: 1
}, 500);
$(bgBottom).css({
"z-index": "3",
"opacity": "0"
}).animate({
opacity: 1
}, 500);
}
});
@import 'https://fonts.googleapis.com/css?family=Raleway:300,300i,400,400i,700,700i';
body,
html {
height: 100%;
font-size: 16px;
}
#flex-container {
display: flex;
height: 100%;
background: grey;
flex-direction: column;
overflow: hidden;
}
#bloc-central {
height: 180px;
width: 100%;
border-top: 3px solid #fff;
border-bottom: 3px solid #fff;
padding: 5px 0;
align-self: center;
order: 2;
z-index: 9999;
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
margin: auto;
}
#bloc-central-in {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
background: #fff;
}
/* ==================
FONDS HAUT ET BAS
================== */
/* ----- POSITIONNEMENT DES 2 FONDS ----- */
#background-top,
#background-bottom {
width: 100%;
min-height: 50%;
z-index: 1;
position: relative;
}
#background-top > *,
#background-bottom > * {
min-height: 100%;
background-size: cover;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
#background-top {
align-self: flex-start;
order: 1;
}
#background-bottom {
align-self: flex-end;
order: 2;
}
/* ----- FONDS NEUTRES ----- */
.background-neutre-top {
background: url(http://dummy-images.com/abstract/dummy-480x270-Rope.jpg) no-repeat center 50% fixed;
z-index: 1;
}
.background-neutre-bottom {
background: url(http://dummy-images.com/abstract/dummy-480x270-Rope.jpg) no-repeat center -50% fixed;
z-index: 1;
}
/* ----- FONDS MODE ----- */
.background-mode-top {
background: url(http://dummy-images.com/abstract/dummy-480x270-Circus.jpg) no-repeat center 50% fixed;
opacity: 0;
}
.background-mode-bottom {
background: url(http://dummy-images.com/abstract/dummy-480x270-Circus.jpg) no-repeat center -50% fixed;
opacity: 0;
}
/* ----- FONDS COIFFURE ----- */
.background-coiffure-top {
background: url(http://dummy-images.com/abstract/dummy-480x270-FairyLights.jpg) no-repeat center 50% fixed;
opacity: 0;
}
.background-coiffure-bottom {
background: url(http://dummy-images.com/abstract/dummy-480x270-FairyLights.jpg) no-repeat center -50% fixed;
opacity: 0;
}
/* ----- FONDS INSTITUT ----- */
.background-institut-top {
background: url(http://dummy-images.com/abstract/dummy-480x270-Bottles.jpg) no-repeat center 50% fixed;
opacity: 0;
}
.background-institut-bottom {
background: url(http://dummy-images.com/abstract/dummy-480x270-Bottles.jpg) no-repeat center -50% fixed;
opacity: 0;
}
#bloc-univers {
align-self: center;
}
#select-univers {
font-family: 'Raleway', sans-serif;
font-weight: 300;
font-style: italic;
font-size: 1.125em;
color: #c9c9c9;
}
.titre-ligne {
text-align: center;
display: flex;
flex-direction: row;
justify-content: center;
padding: 0 15px;
margin: 0 0 10px 0;
}
.titre-ligne:before,
.titre-ligne:after {
flex-grow: 1;
height: 1px;
content: '\a0';
background-color: #ddd;
position: relative;
top: 0.5em;
}
.titre-ligne:before {
margin-right: 10px;
}
.titre-ligne:after {
margin-left: 10px;
}
.btn-univers:link,
.btn-univers:visited {
display: inline-block;
width: 100%;
height: 50px;
border: 1px solid #c9c9c9;
font-family: 'Raleway', sans-serif;
font-weight: 300;
font-size: 1.750em;
text-align: center;
text-decoration: none;
line-height: 50px;
color: #c9c9c9;
transition: all .2s ease-in-out;
}
#btn-mode:hover {
color: #f08945;
border: 1px solid #f08945;
}
#btn-coiffure:hover {
color: #0fc798;
border: 1px solid #0fc798;
}
#btn-institut:hover {
color: #3f9cf2;
border: 1px solid #3f9cf2;
}
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="flex-container">
<div id="background-top">
<div class="background-neutre-top"></div>
<div class="background-mode-top"></div>
<div class="background-coiffure-top"></div>
<div class="background-institut-top"></div>
</div>
<div id="background-bottom">
<div class="background-neutre-bottom"></div>
<div class="background-mode-bottom"></div>
<div class="background-coiffure-bottom"></div>
<div class="background-institut-bottom"></div>
</div>
<div id="bloc-central">
<div id="bloc-central-in">
<div class="container">
<div id="logo-viceversa" class="col-md-6">LOGO</div>
<div id="bloc-univers" class="col-md-6">
<div class="row text-center" id="select-univers">
<span class="titre-ligne">CHOISISSEZ VOTRE UNIVERS</span>
</div>
<div class="row">
<div class="col-md-4">
<div><a id="btn-mode" class="btn-univers" href="#">MODE</a>
</div>
</div>
<div class="col-md-4">
<div><a id="btn-coiffure" class="btn-univers" href="#">COIFFURE</a>
</div>
</div>
<div class="col-md-4">
<div><a id="btn-institut" class="btn-univers" href="#">INSTITUT</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
关于html - 堆积 flex 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38325941/
更新 对于那些不喜欢内联 CSS 并想要类的人,这里有另一个带有类和样式表的 jsFiddle。 更新结束 我想做一个产品页面。它将包含三列。第一个是图片,第二个是一些规范,第三个是“入篮”。所有列的
我创建了一个简单的测试应用程序 使用以下代码 var i : int; for (i=0; i *
我做了一个小demo http://html5.by/blogdemo/flexbox/flex-grow-shrink-basis-stackoverflow.html flex 容器中有2个 fl
我读过好几遍,要让 flex-grow 按预期工作,您通常需要设置 flex-grow:1(或 flex: 1) 在元素的父级、其父级等上,一直向上。 在学习 flexbox 时,这给我的印象是它具有
我开始学习 FLEX。我只有 flex sdk。所以我只能使用它开始学习吗?如果是这样,请建议我要通过的链接.. 但是,使用编辑器将最大限度地减少我们的工作,并自行创建代码。所以作为一个新的学习者,理
有没有办法使用 flex-direction: column 在 flex 容器中放置 flex 项有相同的高度,只使用 CSS? JSFiddle:https://jsf
我有一个 flex .swf 和一个单独的 AIR 项目,我试图通过套接字相互通信。 这两个程序连接正常,.swf 能够毫无问题地将数据发送到 AIR 应用程序。但是,我发现当 AIR 应用程序将数据
在这种情况下,我希望将 2.5 放置在 2 下方 - 但 flexbox 容器强制将其放置在同一行,而不是将其放置在 div 下方那已经是那个特定的顺序了。 我如何使用 flexbox - 将包含 2
假设您有一个带有显示 flex、flex-direction 列的 div,在本例中高度为 600。 它有三个子项,每个子项的属性 flex 等于 1。前两个子项呈现一些简单文本,第三个子项呈现 h1
男孩,这个头衔是满口的。让我解释一下我的困惑: 我有一个 flex 容器和 2 个 flex 元素。 /* CSS */ .container {
这个问题在这里已经有了答案: CSS3 Flexbox: display: box vs. flexbox vs. flex (3 个答案) 关闭 1 年前。 今天我们中的许多人都知道 displa
其用例是带有单选按钮的响应式表单。当在大 PC 屏幕上时,所有单选按钮通常都在屏幕上的一行中(就像带有 flex-direction: row 的非包装 flex 容器中的 flex 元素)。在电话上
在可访问的 flex 应用程序中,用户可以使用 TAB 键在控件中导航。 在用户激活特定链接后,flex 应用程序会在 html 页面顶部弹出,并使用 swfobject.embedSWF 加载。 它
我将我的 Flex 3 项目导入 Flex 4 并删除了 Flex 4 问题窗口中列出的所有错误和警告。 启动我的应用程序时,我在 Flex 4 中遇到以下错误。 这可能是什么原因? Error: C
我有如下标记: alot of text 我不能让黄色占据红色的 100% 高度,即使红色溢出,它也只占据窗口的 100%。如果我将红色的 display
我在 Eclispe 3.4 中安装了 flex builder 3 插件。现在许可证过期了。所以我需要在其中添加另一个许可证。但我无法更改许可证 key ,因为该选项已禁用。 因此,请任何人知道如何
这个问题在这里已经有了答案: Make flex items have equal width in a row (3 个答案) How to make Flexbox items the same
我正在尝试理解以下行。 flex :0 1 50% 现在,如果最后一个值,flex basis 是像素,上面会说该元素不允许增长,但允许缩小并且最大为 50 像素。 但是用百分比代替,有什么关系。它将
我一直致力于 flex 布局,遇到了针对 Firefox 和 IE11 的问题。 我创建了一个 codepen显示问题。 截图 Chrome(左)、Firefox(右) 描述 预期的行为是header
我正在尝试在 flex (flash builder 4) 中创建一个简单的表单。我在里面放了一个表单容器和 FormItems。例如,表单项是标准的“客户”字段,例如名字、姓氏、地址、城市、州、 z
我是一名优秀的程序员,十分优秀!