- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
所以我周五有一项任务要准备好我的作品集,我决定把它做成一页滚动,但我似乎无法在没有 Bootstrap 的情况下让 scrollspy 工作(不允许使用 Bootstrap )有没有人知道如何我能让它工作吗?
我已经尝试过不同种类的 js 脚本和 jquery,但我似乎无法让它们工作
<a href="https://codepen.io/axelnijsten/pen/VwwLQMV" rel="noreferrer noopener nofollow">https://codepen.io/axelnijsten/pen/VwwLQMV</a>
<div class="container">
<div class="intro">
<h1>Please explore</h1>
<h1>and</h1>
<h1>Discover.</h1>
<br>
<a href="#works"><input id="works" class= "button-8" type="submit" value="projects" name= " "></a>
</div>
我希望当我点击联系人时,它会平滑地滚动到联系人部分
最佳答案
使用 Bootstrap 或 jQuery slideDown() 方法。
<a href="#contact" class="goToSection">Contact</a>
<a href="#CV" class="goToSection">CV</a>
<script type="text/javascript">
$(document).on('click','.goToSection',function(e){
e.preventDefault();
$($(this).attr('href')).slideDown();
})
</script>
第二种方法:
试试 jQuery Animate 方法。
$(document).on('click','.goToSection',function(e){
$('html, body').animate({
scrollTop: $($(this).attr('data-href')).offset().top
}, 6000);//set second as required
})
body{
font-family: 'Red Hat Display', sans-serif;
background-color: #2D3436;
color: #EEEEEE;
margin: 0;
}
.intro{
font-size:30px;
position: absolute;
top: 160px;
left: 10px;
h1{
margin-left: 20px;
margin-top: 0;
margin-bottom: 0;
}
}
.navigation{
text-align: center;
font-size: 30px;
position: relative;
background-color: #202020;
height: 604px;
margin: 0;
padding: 0;
width: 550px;
}
.container {
display: flex;
flex-direction: column;
margin: 0;
flex-wrap: wrap;
.navigation{
align-self: flex-end;
border-bottom-left-radius: 25%;
div{
display: flex;
height: 500px;
align-items: center;
justify-content: center;
margin-top: 20px;
}
a {
text-decoration: none;
color: #EEEEEE;
padding: 10px;
&:visited
{
color: #EEEEEE;
}
}
}
}
.profile-image img{
border-radius: 50%;
}
.button-8{
color: black;
background-color: #00CEC9;
padding: 10px 15px;
border: 2px solid;
border-radius: 25px;
width: 160px;
border-color: #00CEC9;
font-size: 14px;
font-weight: bold;
margin-left: 25px;
&:hover{
background-color: aqua;
border-color: aqua;
cursor: pointer;
}
}
.divider{
text-align: center;
font-size: 30px;
margin: 20px 0 20px 0;
}
.works{
text-align: center;
justify-content: left;
background-color: #202020;
}
.works-sub1{
display: flex;
text-align: left;
justify-content: flex-start;
img{
height: 150px;
width: 150px;
margin-top: 20px;
margin-left: 100px;
margin-bottom: 20px;
}
p{
padding: 10px;
font-size: 25px;
}
}
.works-sub2{
display: flex;
text-align: left;
justify-content: flex-end;
img{
height: 150px;
width: 150px;
margin-right: 100px;
}
p{
padding: 10px;
font-size: 25px;
text-align: right;
}
}
.works-sub3{
display: flex;
text-align: left;
justify-content: flex-start;
img{
height: 150px;
width: 150px;
margin-left: 100px;
margin-top: 20px;
margin-bottom: 40px;
}
p{
padding: 10px;
font-size: 25px;
}
}
.about{
display: flex;
background-color: #2D3436;
flex-direction: column;
h1{
text-align: left;
margin-left: 30px;
font-size: 40px;
}
}
.about-tags{
text-align: left;
font-size: 25px;
font-family: "Times New Roman", Times, serif;
color: #00CEC9;
padding-left: 20px;
padding-bottom: 5px;
}
.about-content{
text-align: right;
font-size: 25px;
padding-right: 20px;
}
.contact{
display: flex;
background-color: #202020;
flex-direction: column;
height: 500px;
justify-content: center;
align-content: center;
}
.contact-text{
align-items: center;
justify-content: center;
p{
margin: 0;
font-size: 25px;
display: flex;
text-align: center;
justify-content: center;
}
}
.container-icons{
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: flex-end;
i{
font-size: 25px;
color: #00CEC9;
padding-top: 150px;
}
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="res/css/style.css">
<title>Portfolio</title>
</head>
<body>
<div class="container">
<div class="intro">
<h1>Please explore</h1>
<h1>and</h1>
<h1>Discover.</h1>
<br>
<a href="#works"><input id="works" class= "button-8" type="submit" value="projects" name= " "></a>
</div>
<div class="navigation" data-spy="scroll" data-target="#works">
<a data-href="#contact" class="goToSection">Contact</a>
<a data-href="#skills" class="goToSection">Skills</a>
<a data-href="#works" class="goToSection">Works</a>
<div class="profile-image">
<img src="res/img/MokeyMokey-DAR.png">
</div>
</div>
<div class="divider">
<p>HTML - CSS - SCSS - JS</p>
</div>
<section id="works">
<div class="works">
<h1>Works</h1>
<div class="works-sub1">
<img src="res/img/minesweeper.png">
<p>This is an interactible minesweeper box wich i made<br>
using flexbox.</p>
</div>
<div class="works-sub2">
<p>This is a chessboard wich i configured together
<br>using html and css. This was done with grid.</p>
<img src="res/img/chess.png">
</div>
<div class="works-sub3">
<img src="res/img/minesweeper.png">
<p>This is an interactible minesweeper box wich i made<br>
using flexbox.</p>
</div>
</div>
</section>
<section id="skills">
<div class="about">
<h1 class="about-title">What I do (skills)</h1>
<div class="about-tags"><head></div>
<div class="about-tags"></head></div>
<div class="about-tags"><body></div>
<div class="about-content">
<p>I design websites using Visual Studio Code.<br>
CSS, HTML and Sass is what I mainly use to
<br>accomplish these things. </p>
</div>
<div class="about-tags"></body></div>
</div>
</section>
<section id="contact">
<div class="contact">
<div class="contact-text">
(contact)
<p>If you are interested in what I <br>do you can contact me on the <br>following.</p>
</div>
<div class="container-icons">
<i class="icon icon-envelop"></i>
<i class="icon icon-facebook"></i>
<i class="icon icon-instagram"></i>
<i class="icon icon-linkedin"></i>
</div>
</div>
</section>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.js" integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js" integrity="sha256-VazP97ZCwtekAsvgPBSUwPFKdrwD3unUfSGVYrahUqU=" crossorigin="anonymous"></script>
</body>
</html>
查看您提供的使用 html css 的工作演示。
关于javascript - scrollspy 动画不会工作,我也不知道如何让它工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58304894/
我有几个系统使用 docker-compose 并且没有问题。 但是,我在这里有一个“向下”根本不做任何事情的地方。 'up'虽然完美。这是在 MacOS 上。 该项目的昵称是“ Storm ”,脚本
解释起来确实很奇怪,所以就这样...... 我正在从 phpmyadmin 获取包含未转义单引号的数据。我正在尝试转换'至'通过使用Content-Type: text/html;在 php
伙计们?在这里需要一些帮助。我使用委托(delegate)协议(protocol)将一些字符串从“第二个 View Controller ”传回给它的前一个。 我的数组附加了我在委托(delegate
我有以下 eval() 东西: c = Customer() eval("c.name = row.value('customer', '{c}')".format(c=column_name), {
我写了这个测试类: @ContextConfiguration(locations = { "classpath:/test/BeanConfig.xml" }) public class Candi
我这样写代码: @ContextConfiguration(locations = { "classpath:/test/BeanConfig.xml" }) @RunWith(SpringJUnit
假设我更改了文件,然后进行 pull 。 Git 会报错,因为本地仓库还没有保存,将被覆盖。如果我然后删除该添加并使文件与以前相同(与远程 repo 相同),那么会发生 pull 吗? 最佳答案 是的
前言 很多同学将虚拟列表当做亮点写在简历上面,但是却不知道如何手写,那么这个就不是加分项而是减分项了。在上一篇文章欧阳教会你 如何实现一个定高虚拟列表 ,但是实际项目中更多的是不定高虚拟列表,这篇文
我正在阅读《Java for Dummies》一书,但遇到了问题。我不明白为什么 @Override 不起作用。我确信这与我的代码有关,因为我之前已经获得了一个多态数组来使用覆盖,但它对我来说太简单了
我从我的项目中提取了这段代码,因为我试图找到我犯的一个错误,该错误使我的 BeginStoryboard 无法自行停止。我尽可能地简化了代码,但仍然没有发现问题。你认为它可能是什么?
这个问题在这里已经有了答案: Difference between char[] and char * in C [duplicate] (3 个答案) 关闭 7 年前。 我想我知道自己问题的答案,
我一直在使用 java 的 Scanner 类时遇到问题。我可以让它很好地读取我的输入,但问题是当我想要输出一些东西时。给定多行输入,我想在完全读取所有输入后只打印一行。这是我用来读取输入的代码:
对于这个问题,我已经用最简单的术语表达了这一点。 如果元素被点击,'active'类被添加到元素,'active'类从其他元素中移除。 但是,如果该元素是“事件的”并且它被第二次单击,则“事件”类不应
这会在桌面上创建一个新文件夹,但不会将文件夹 .pfrom 的内容 move 到文件夹 .pTo。 int main() { SHFILEOPSTRUCT sf = {0}; TCHA
我有一个关于多线程调试 DLL (/MDd) 和多线程调试 (/MTd) 设置的问题。它们之间的区别很明显:一个是使用动态库,一个是使用静态库。当我使用/MDd 编译我的程序时,一切都进行得很好。但是
我的问题是,如果我在页面加载时创建一个克隆变量,jQuery 只会 append 它一次。奇怪! Click to copy This is an element! $(document)
所以...我是一个开发 django 应用程序的新手,但是当我尝试通过 virtualbox heroku 运行 heroku run python manage.py syncdb 时,它一直在下面
我在 Spring Boot 初始化时遇到了问题。我在一个简单的 Spring Boot 项目中有这个结构。 com.project.name |----App.java (Annoted with
我在 www.7hermanosmx.com/menu.php 页面上有以下代码 - 一切正常,除了黄色框(类 menuholder)应该每行三个相互 float 。他们坚决拒绝这样做!我知道我做错了
我正在尝试在我正在构建的小型网站上添加一个下拉菜单。出于某种原因,我可以获得我想要向下滑动到 fadeOut() 的 div 并执行其他类似的操作,但我无法将它获取到 slideDown()。我不知道
我是一名优秀的程序员,十分优秀!