- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图让 slider 上的图像在容器内全宽显示。我试过分离英雄文本 div,但它仍然不起作用。我多年来一直坚持这个,并意识到它可能是愚蠢的,所以堆栈溢出是我最后的选择。请参阅下面的代码和显示方式的图像:
var slideIndex = 1;
showSlides(slideIndex);
// Next/previous controls
function plusSlides(n) {
showSlides(slideIndex += n);
}
// Thumbnail image controls
function currentSlide(n) {
showSlides(slideIndex = n);
}
function showSlides(n) {
var i;
var slides = document.getElementsByClassName("mySlides");
var dots = document.getElementsByClassName("dot");
if (n > slides.length) {slideIndex = 1}
if (n < 1) {slideIndex = slides.length}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
}
/* HERO IMAGE STARTS */
.hero-image {
background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
height: 500px;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
.hero-text {
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
}
.hero-text h1 {
text-transform: uppercase;
font-weight: 600;
}
.hero-text .button {
font-size: 13px;
padding: 14px 30px !important;
}
/* BLOCKS STARTS */
.border-bottom {
border-bottom: 1px solid #dee2e6 !important;
}
.no-gutters {
margin-right: 0;
margin-left: 0;
}
.padding-5 {
padding: 3rem !important;
}
.height-100 {
height: 100% !important;
}
.width-100 {
width: 100% !important;
}
.bg-light {
background-color: #f8f9fa !important;
}
.display-block {
display: block !important;
}
.marginbottom-3 {
margin-bottom: 1rem !important;
}
.block-feature h2 {
text-transform: uppercase;
font-size: 16px;
position: relative;
padding-bottom: 20px;
margin-bottom: 20px;
}
.block-feature h2::after {
position: absolute;
content: "";
width: 50px;
height: 2px;
bottom: 0;
background: #763797;
left: 0;
}
display-4 {
font-size: 3.5rem;
font-weight: 300;
line-height: 1.2;
}
* {
box-sizing: border-box
}
/* Hide the images by default */
.mySlides {
display: none;
}
/* Next & previous buttons */
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
margin-top: -22px;
padding: 16px;
color: white;
font-weight: bold;
font-size: 16px;
border-radius: 0 3px 3px 0;
user-select: none;
}
/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
background-color: rgba(0, 0, 0, 0.8);
color: #763797;
}
/* Fading animation */
.fade {
-webkit-animation-name: fade;
-webkit-animation-duration: 1.5s;
animation-name: fade;
animation-duration: 1.5s;
}
@-webkit-keyframes fade {
from {
opacity: .4
}
to {
opacity: 1
}
}
@keyframes fade {
from {
opacity: .4
}
to {
opacity: 1
}
}
!doctype html>
<html class="no-js" lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GloboGym</title>
<link rel="stylesheet" href="assets/css/foundation.css">
<link rel="stylesheet" href="assets/css/app.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/fonts/flaticon/font/flaticon.css">
</head>
<body>
<!-- HERO AREA STARTS -->
<section>
<div class="hero-image">
<div class="hero-text mySlides fade" style="background-image: url(assets/img/banner-bg.jpg);">
<h1>From Only £14.99 A Month, Everybody Is Welcome</h1>
<a href="membership.html" class="button">Join Now</a>
</div>
<div class="hero-text mySlides fade" style="background-image: url(assets/img/banner-bg1.jpg);">
<h1>From Only £14.99 A Month, Everybody Is Welcome</h1>
<a href="membership.html" class="button">Join Now</a>
</div>
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
</section>
<!-- HERO AREA ENDS -->
<script src="assets/js/vendor/jquery.js"></script>
<script src="assets/js/vendor/what-input.js"></script>
<script src="assets/js/vendor/foundation.js"></script>
<script src="assets/js/app.js"></script>
<script src="assets/js/vendor/globogym-scrips.js"></script>
</body>
</html>
最佳答案
根据您发布的屏幕截图。问题出在你的CSS上。您已将 background-size: 覆盖到容器而不是内部图像。这就是为什么它不会占用整个空间的原因。您需要以下代码让您的图像占用容器的整个空间。
在 CSS 中:
.mySlides { background-size: cover ; height : 500px; }
关于javascript - 英雄 slider 图像未显示全宽,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55197037/
我正在关注 Angular 的 Tour of Heroes Tutorial我现在正在尝试将 observables 集成到我的项目中。将我的 hero.service.ts 文件更改为如下所示后
我正在关注 Angular 的 Tour of Heroes Tutorial我现在正在尝试将 observables 集成到我的项目中。将我的 hero.service.ts 文件更改为如下所示后
新一期王者荣耀登录礼包 免费领取三天皮肤+英雄 这是最新一期的活动 登录游戏即可获得共四次抽奖机会 有一定概率可中永久皮肤 经常玩游戏的可以领两天玩玩 活动地址:http://t.cn/A
我正在尝试制作一个网站,但我遇到了一个问题。我有一张图片,我需要它始终填满整个屏幕。就像他们在这个网站上所做的那样:http://mollyandmepecans.com这是我的网站:https://
我试图让 slider 上的图像在容器内全宽显示。我试过分离英雄文本 div,但它仍然不起作用。我多年来一直坚持这个,并意识到它可能是愚蠢的,所以堆栈溢出是我最后的选择。请参阅下面的代码和显示方式的图
我看过 Heroku 的 Taps 项目 ( http://devcenter.heroku.com/articles/taps )但是外键有很大的限制,所以我不太愿意使用它。 我想做的就是安全地获取
我正在运行 Angular 教程,但我无法理解某一部分实际发生的情况。我通过搜索找到了一些例子,但没有具体回答这个问题。这是代码: getHeroes (): Observable { retur
我正在运行 Angular 教程,但我无法理解某一部分实际发生的情况。我通过搜索找到了一些例子,但没有具体回答这个问题。这是代码: getHeroes (): Observable { retur
一位客户表示,他们非常喜欢 Google Play 处理他们的英雄 slider 的方式。我试过在 jQueryCycle 中复制效果,但无济于事。谁能阐明实现相同效果的最佳方法? 对于那些不熟悉的人
我正在做 Angular2 英雄之旅项目 https://angular.io/docs/ts/latest/tutorial/toh-pt2.html. {{hero.name}} 这里我可以使用下
我运行了 google page speed,它说我应该 Gzip 我的 javascript 文件? 我如何 gzip 我的 javascript 文件?如果有问题,我的网站托管在 heroku 上
前几天我将我的 Rails 4.1.7 应用程序发布到 Heroku 中,CSS 似乎工作正常。 但 javascript 文件部分响应。我有一个警报(“在 Charts-other.js 中”);
我不太熟悉 jQuery 和/或 JavaScript,但我正在尝试使用 Hero Slider对于我正在构建的网站。我几乎修改了代码来执行我想要的操作,但由于某种原因,第一张幻灯片似乎无法加载。奇怪
我正在学习着名的 Angular 教程,英雄之旅,但我正在努力迈出一步。 关于 sixth course, HTTP ,我们正在使用一种工具来模拟对 API 的 API 调用。 我想我遵循了所有步骤,
因此,我通常不会在将应用程序部署到 heroku 时遇到任何问题,但是,在这种特定情况下,我会遇到预编译失败错误... 这里的这一行对我来说很突出: remote: NoMethodEr
好吧,只是对这个发疯。 我在之前的 mx.datagrid 中使用了 rowcount 现在,使用“s:datagrid”,我尝试使用 requesteMaxRowCount 和 RequestMin
环境:Angular 5+ 来源:https://angular.io/tutorial 在 heroes.component.ts 类中有一个带冒号的赋值,如下所示: export class He
flask 应用程序可以在本地主机上正常登录和注册。但是当我把它推到 heroku 时,这就成了一个问题。它显示了上述错误。这是 app.py 代码 from flask import Flask,
我是一名优秀的程序员,十分优秀!