- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在较小的设备上单击汉堡图标,应显示导航栏的下拉菜单。
在我的原始文件中,我下载了 bootstrap.min.js 和 bootstrap.min.css 并链接了它们。我还在 bootstrap.min.js 之前链接了 jquery 库文件。我也尝试过使用 CDN 链接。但是还是没有什么好结果。当然,在调整浏览器大小时,导航栏会变得响应并变成汉堡图标。但是单击该图标实际上没有任何反应。
@import url('https://fonts.googleapis.com/css?family=Lato:400,700');
body {
background: #fff;
font-family: 'Lato', sans-serif;
font-style: normal;
font-weight: normal;
overflow-x: hidden;
}
html,
body {
width: 100%;
height: 100%;
}
.section {
padding-top: 100px;
padding-bottom: 100px;
position: relative;
background-color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-style: normal;
font-weight: bold;
letter-spacing: 0px;
}
h1 {
color: #373737;
font-size: 45px;
line-height: normal;
}
h2 {
color: #454545;
font-size: 35px;
line-height: 52px;
margin-top: 0px;
}
h3 {
color: #585858;
font-size: 16px;
line-height: 32px;
letter-spacing: 6px;
text-transform: uppercase;
}
h4 {
color: #656565;
font-size: 20px;
}
p {
color: #878787;
font-size: 16px;
font-weight: normal;
line-height: 25px;
letter-spacing: 0.2px;
}
/*-------- Navigation section--------*/
.navbar-default {
border: none;
margin-bottom: 0;
background-color: #ffffff;
padding: 12px 0;
border-bottom: 1px solid #000;
}
.navbar-default .navbar-brand {
color: #444;
font-weight: normal;
font-size: 20px;
}
.navbar-default .navbar-nav li a {
font-size: 12px;
font-weight: bold;
color: #858585;
letter-spacing: 1px;
text-transform: uppercase;
-webkit-transition: all ease-in-out 0.4s;
transition: all ease-in-out 0.4s;
padding: 0 12px;
margin: 15px 8px;
}
.navbar-default .navbar-nav>li a:hover {
color: #000 !important;
}
.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
color: #000;
}
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
color: #000;
}
.navbar-default .navbar-toggle {
border: none;
padding-top: 10px;
}
.navbar-default .navbar-toggle {
background-color: transparent;
}
.navbar-default .navbar-toggle .icon-bar {
background: #000000;
border-color: transparent;
}
/*=============Home section ===============*/
.home {
background-image: url(../images/bg.jpg);
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
background-position: center;
position: relative;
}
#home {
background-size: cover;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
height: 100vh;
position: relative;
}
.home .home-content p {
margin: auto;
font-size: 12px;
}
.home .home-content .site-name {
border: 4px solid #1a1a1a;
letter-spacing: 5px;
width: 240px;
padding: 12px;
border-bottom: 0;
}
.home .home-content h1 {
text-align: center;
}
.home .home-content h3 {
text-align: center;
}
.home .home-content {
text-align: center;
}
.home .home-content .border {
border: 4px solid #1a1a1a;
width: 230px;
padding: 28px 0px;
margin: 15px auto;
border-top: 0;
}
.section-btn {
background: #454545;
border: none;
border-radius: 0px;
color: #ffffff;
font-size: 13px;
font-weight: bold;
letter-spacing: 1.6px;
padding: 12px 32px 16px 32px;
margin-top: 42px;
-webkit-transition: all ease-in-out 0.4s;
transition: all ease-in-out 0.4s;
}
.section-btn:focus,
.section-btn:hover {
background: #000000;
color: #ffffff;
}
/*=============About section ===============*/
.about-social li {
display: inline-block;
}
.about-social li a {
color: #000;
display: inline-block;
height: 42px;
width: 42px;
font-size: 20px;
border-radius: 2%;
border: 1px solid #d4d4d4;
line-height: 40px;
transition: all 0.5s;
text-align: center;
}
.about-social li a:hover {
color: #fff;
border-color: #000;
background: #2d2d2d;
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<!-- Navigation area -->
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-collapse-main">
<span class="sr-only">Toggle navigation</span>
<span class="icon icon-bar"></span>
<span class="icon icon-bar"></span>
<span class="icon icon-bar"></span>
</button>
<!-- Logo text -->
<a href="index.html" class="navbar-brand">Maureen.</a>
</div>
<!-- Navigation -->
<div class="collapse navbar-collapse" id="navbar-collapse-main">
<ul class="nav navbar-nav navbar-right">
<li><a class="active" href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#service">Service</a></li>
<li><a href="#resume">Resume</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- Home section start -->
<section class="home" id="home">
<div class="container">
<div class="row">
<div class="col s12 m12 l6 center-align">
<div class="home-content">
<h1>HELLO THERE!</h1><br/>
<p>My name is Maureen</p>
<h3>I AM A UI/UX DEVELOPER</h3>
<div class="border"></div>
<a href="#" class="">Download Resume PDF</a>
</div>
</div>
</div>
</div>
</section>
<!-- About section -->
<section class="section" id="about">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12">
<div class="mt-3">
<img src="images/profile-image.jpg" alt="" class="img-fluid mx-auto d-block img-thumbnail">
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12">
<div class="mt-3">
<h2>ABOUT ME</h2>
<h3 class="mt-4">HELLO! <span class="text-custom">I'M MAUREEN DOE.</span></h3>
<p class="text-muted mt-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam tempor sem et nisi efficitur tempor.Phasellus pharetra dolor in enim pellentesque tincidunt vel non nisi. </p>
<p class="text-muted mt-2">Nullam posuere eu ante ut pharetra. Donec laoreet volutpat viverra. Vivamus ultrices, nibh eu porttitor luctus, odio lacus semper dolor, non scelerisque tellus augue a risus.</p>
<p class="text-muted mt-2">Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec quis ullamcorper tortor. Nulla quis bibendum ex. Etiam eget ullamcorper turpis, eu luctus nibh. </p><br/>
<div>
<ul class="about-social list-inline">
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-instagram"></i></a></li>
<li><a href="#"><i class="fab fa-dribbble"></i></a></li>
<li><a href="#"><i class="fab fa-behance"></i></a></li>
<li><a href="#"><i class="fab fa-youtube"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End of about section -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
最佳答案
在执行此类操作时,务必确保您使用的是创作者推荐的库/框架。
当涉及到 Bootstrap 时,您应该尽量使所有 CDN 的版本控制尽可能相似。这是为 3.3.4 列出的 CDN
你有 3.3.4 css 和 3.3.6 js
@import url('https://fonts.googleapis.com/css?family=Lato:400,700');
body {
background: #fff;
font-family: 'Lato', sans-serif;
font-style: normal;
font-weight: normal;
overflow-x: hidden;
}
html,
body {
width: 100%;
height: 100%;
}
.section {
padding-top: 100px;
padding-bottom: 100px;
position: relative;
background-color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-style: normal;
font-weight: bold;
letter-spacing: 0px;
}
h1 {
color: #373737;
font-size: 45px;
line-height: normal;
}
h2 {
color: #454545;
font-size: 35px;
line-height: 52px;
margin-top: 0px;
}
h3 {
color: #585858;
font-size: 16px;
line-height: 32px;
letter-spacing: 6px;
text-transform: uppercase;
}
h4 {
color: #656565;
font-size: 20px;
}
p {
color: #878787;
font-size: 16px;
font-weight: normal;
line-height: 25px;
letter-spacing: 0.2px;
}
/*-------- Navigation section--------*/
.navbar-default {
border: none;
margin-bottom: 0;
background-color: #ffffff;
padding: 12px 0;
border-bottom: 1px solid #000;
}
.navbar-default .navbar-brand {
color: #444;
font-weight: normal;
font-size: 20px;
}
.navbar-default .navbar-nav li a {
font-size: 12px;
font-weight: bold;
color: #858585;
letter-spacing: 1px;
text-transform: uppercase;
-webkit-transition: all ease-in-out 0.4s;
transition: all ease-in-out 0.4s;
padding: 0 12px;
margin: 15px 8px;
}
.navbar-default .navbar-nav>li a:hover {
color: #000 !important;
}
.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
color: #000;
}
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
color: #000;
}
.navbar-default .navbar-toggle {
border: none;
padding-top: 10px;
}
.navbar-default .navbar-toggle {
background-color: transparent;
}
.navbar-default .navbar-toggle .icon-bar {
background: #000000;
border-color: transparent;
}
/*=============Home section ===============*/
.home {
background-image: url(../images/bg.jpg);
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
background-position: center;
position: relative;
}
#home {
background-size: cover;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
height: 100vh;
position: relative;
}
.home .home-content p {
margin: auto;
font-size: 12px;
}
.home .home-content .site-name {
border: 4px solid #1a1a1a;
letter-spacing: 5px;
width: 240px;
padding: 12px;
border-bottom: 0;
}
.home .home-content h1 {
text-align: center;
}
.home .home-content h3 {
text-align: center;
}
.home .home-content {
text-align: center;
}
.home .home-content .border {
border: 4px solid #1a1a1a;
width: 230px;
padding: 28px 0px;
margin: 15px auto;
border-top: 0;
}
.section-btn {
background: #454545;
border: none;
border-radius: 0px;
color: #ffffff;
font-size: 13px;
font-weight: bold;
letter-spacing: 1.6px;
padding: 12px 32px 16px 32px;
margin-top: 42px;
-webkit-transition: all ease-in-out 0.4s;
transition: all ease-in-out 0.4s;
}
.section-btn:focus,
.section-btn:hover {
background: #000000;
color: #ffffff;
}
/*=============About section ===============*/
.about-social li {
display: inline-block;
}
.about-social li a {
color: #000;
display: inline-block;
height: 42px;
width: 42px;
font-size: 20px;
border-radius: 2%;
border: 1px solid #d4d4d4;
line-height: 40px;
transition: all 0.5s;
text-align: center;
}
.about-social li a:hover {
color: #fff;
border-color: #000;
background: #2d2d2d;
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<!-- Navigation area -->
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse-main" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- Logo text -->
<a href="index.html" class="navbar-brand">Maureen.</a>
</div>
<!-- Navigation -->
<div class="collapse navbar-collapse" id="navbar-collapse-main">
<ul class="nav navbar-nav navbar-right">
<li><a class="active" href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#service">Service</a></li>
<li><a href="#resume">Resume</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- Home section start -->
<section class="home" id="home">
<div class="container">
<div class="row">
<div class="col s12 m12 l6 center-align">
<div class="home-content">
<h1>HELLO THERE!</h1><br/>
<p>My name is Maureen</p>
<h3>I AM A UI/UX DEVELOPER</h3>
<div class="border"></div>
<a href="#" class="">Download Resume PDF</a>
</div>
</div>
</div>
</div>
</section>
<!-- About section -->
<section class="section" id="about">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12">
<div class="mt-3">
<img src="images/profile-image.jpg" alt="" class="img-fluid mx-auto d-block img-thumbnail">
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12">
<div class="mt-3">
<h2>ABOUT ME</h2>
<h3 class="mt-4">HELLO! <span class="text-custom">I'M MAUREEN DOE.</span></h3>
<p class="text-muted mt-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam tempor sem et nisi efficitur tempor.Phasellus pharetra dolor in enim pellentesque tincidunt vel non nisi. </p>
<p class="text-muted mt-2">Nullam posuere eu ante ut pharetra. Donec laoreet volutpat viverra. Vivamus ultrices, nibh eu porttitor luctus, odio lacus semper dolor, non scelerisque tellus augue a risus.</p>
<p class="text-muted mt-2">Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec quis ullamcorper tortor. Nulla quis bibendum ex. Etiam eget ullamcorper turpis, eu luctus nibh. </p><br/>
<div>
<ul class="about-social list-inline">
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-instagram"></i></a></li>
<li><a href="#"><i class="fab fa-dribbble"></i></a></li>
<li><a href="#"><i class="fab fa-behance"></i></a></li>
<li><a href="#"><i class="fab fa-youtube"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End of about section -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
关于html - 小屏幕上的 Bootstrap 导航栏没有下拉菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54716257/
我试图让我的 jQuery 脚本从单击的链接中提取 url,然后将其插入到我的视频标签中。有什么建议吗? 我试过拼接我从 .html() 中得到的内容,但引号总是搞砸了。
我遇到了 docker 的问题。 场景是这样的:我们使用Codebuild+Packer+docker创建AMI,用于deploy。在这一步中,我们从 Artifactory 中提取图像,并且除了提取
我目前正在学习 RxJS。 在文档中,我找到了这个数组。 我尝试在谷歌上搜索“pull and push javascript”,但我什至不知道如何调用这些实体/概念。我不明白那是什么意思?我假设 S
Title 在小屏幕上,我首先需要标题,然后是文本字段,但在中等以上的屏幕上,我需要相反的方式 - 我已经尝试过推和拉,但它们无法工作 - 有什么想法吗? 最佳答案 根据 Swa
zmq 的某些部分未以可预测的方式运行。 我正在使用 VS2013 和 zmq 3.2.4。为了不在我的 pubsub 框架中“丢失”消息 [旁白:我认为这是一个设计缺陷。我应该能够首先启动我的订阅者
我正在编写一个使用嵌套 Bootstrap 列的页面。我正在使用推/拉让列在移动设备上切换位置,而且效果很好。但是,在桌面上我遇到了一些奇怪的间距问题。嵌套列偏移到父列的右侧。 我设置了一个 fidd
在拉取一些 docker 镜像(但不是全部)时出现此错误: failed to register layer: Error processing tar file(exit status 1): op
我创建了一个 Kubernetes 集群,并为每个节点安装了 docker。 当我尝试使用 docker push local_registry_addr:port/image_id 将图像拉取或推送
没有明确地推/拉单个书签,书签何时从 repo 复制/更新到 repo? 在我对两个本地存储库的测试中,我无法推断出一致的行为。有时从 A 到 B 或 B 到 A 的推/拉会复制/更新书签,有时不会。
在 Bootstrap 3 文档中,他们给出了以下使用 push 和 pull 类更改列顺序 (http://getbootstrap.com/css/#grid-column-ordering) 的
从这个问题开始Three column Bootstrap layout with left sidebar at bottom我了解了 Bootstrap 列推拉。 下面的代码片段几乎可以得到我想要
许多 Repo 函数的签名包括 **kwargs,其中文档说,您可以将参数传递给底层包装的 git 命令。但是,*args 没有位置。为了传递类似标志的参数,如 --all。我原以为它们会像 my_r
如果您将大文件推送/拉到设备上,这真的很烦人,现在无法知道它有多远。是否可以运行 adb push 或 adb pull 并使用“bar”实用程序获取进度条? 这里的主要问题是我认为 adb 需要两个
当我尝试使用 Gitkrakent 向/从 Heroku 推/拉时,GitKraken 告诉我: "Please log in to continue" 请求的“用户/登录”是什么? (我个人 Her
我在 docker 容器中有一个 Jenkins 2.150.1。要安装这个 Jenkins,我只需使用 jenkinsci/blueocean:1.9.0图片。 我创建了一个管道,然后尝试使用我的
我想使用 Jenkins 做下一步: 1- docker pull 2- docker run -i -t 我已经在jenkins上安装了docker插件,但是这可行吗? docker plugi
如果我正在处理一些我不想提交的文件,我只需保存它们。然后我有其他文件想要推送到服务器,但是如果其他人对存储库进行了更改,并且我将它们拉下来,它会要求我 merge 或 rebase ..但是这些选项中
无论出于何种原因,我在 FB 上共享链接时尝试使用的图像都无法加载。给出的确切错误是: 提供了og:image,无法下载。发生这种情况的原因有多种,例如您的服务器使用不受支持的内容编码。爬虫接受 de
今天我买了三星 Galaxy Note 3,它配备了 Android 4.3。由于它太新了,我找不到根植我设备的方法,所以我尝试使用 adb 连接……我失败了。 所以,我用了这个 D:\android
我尝试通过 airflow cli test 命令测试 2 个任务` 第一个任务运行,自动将最后一个控制台推送到 xcom,我按预期在 Airflow GUI 中看到了值 some value 当我通
我是一名优秀的程序员,十分优秀!