mirror of
https://github.com/hnasheralneam/hnasheralneam.github.io.git
synced 2024-11-06 15:45:54 -05:00
Still Working on Second Page!
This commit is contained in:
parent
e8e7702e98
commit
7080892942
3 changed files with 15 additions and 6 deletions
|
@ -10,7 +10,7 @@
|
|||
<title>Meet Squirrel</title>
|
||||
</head>
|
||||
<body>
|
||||
<div class="landing">
|
||||
<div class="landing" id="meet">
|
||||
<div class="text">
|
||||
<br>
|
||||
<h1 class="hi">
|
||||
|
@ -19,16 +19,16 @@
|
|||
<br><br>
|
||||
<p class="about-me">I am not a web developer, but I do spend a lot of time programming. I like CSS transitions and I think everyone should use them. I know HTML, CSS, JavaScript, and Electron, and am currently in the process of learing React and Node. Linux is my faviorite OS (I use Kubuntu, looking into Deepin). You can see my GitHub account <a class="hover-link" href="https://github.com/Squirrel-314">here</a>, and check out all the organizations I am in alone. Like my repositories? Please put up issues for any mistakes, and if you have a suggestion, also make an issue. No, I didn't mean it that way, it's just eaisier for me to see.</p>
|
||||
</div>
|
||||
<div class="next" onclick="document.location = '#vegetable-dash'">
|
||||
<div class="next" id="next1" onclick="page2()">
|
||||
<span class="arrow">⟶</span>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Vegetable Dash -->
|
||||
<div class="block" id="vegetable-dash">
|
||||
<!-- <div class="last" onclick="part1()">
|
||||
<!-- <div class="last" id="last" onclick="page1()">
|
||||
<span class="arrow">⟵</span>
|
||||
</div> -->
|
||||
<!-- <div class="next" onclick="part3()">
|
||||
<!--<div class="next" id="next2" onclick="part3()">
|
||||
<span class="arrow">⟶</span>
|
||||
</div> -->
|
||||
</div>
|
||||
|
|
8
main.js
8
main.js
|
@ -1 +1,9 @@
|
|||
// document.getElementById("vegetable-dash").scrollIntoView();
|
||||
|
||||
function page1() {
|
||||
document.location = '#meet';
|
||||
}
|
||||
|
||||
function page2() {
|
||||
document.location = '#vegetable-dash';
|
||||
}
|
||||
|
|
|
@ -23,6 +23,7 @@ Common Classes
|
|||
|
||||
.block {
|
||||
height: 100vh;
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
|
||||
.next {
|
||||
|
@ -48,7 +49,7 @@ Common Classes
|
|||
width: 80px;
|
||||
background-color: #fff;
|
||||
color: aquamarine;
|
||||
position: absolute;
|
||||
position: relative;
|
||||
bottom: 50px;
|
||||
left: 50px;
|
||||
box-shadow: 0 0 8px #262626;
|
||||
|
@ -192,7 +193,7 @@ Landing
|
|||
|
||||
/*==================================================
|
||||
Vegetable Dash
|
||||
==================================================
|
||||
==================================================*/
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue