mirror of
https://github.com/Xevion/old.xevion.github.io.git
synced 2025-12-06 05:15:40 -06:00
remove console log
This commit is contained in:
@@ -1,10 +1,14 @@
|
||||
- name: Halcyon Theme
|
||||
url: https://marketplace.visualstudio.com/items?itemName=brittanychiang.halcyon-vscode
|
||||
code: https://github.com/bchiang7/halcyon-vscode
|
||||
description: A dark UI & syntax theme for Visual Studio Code. Published to Visual Studio Marketplace.
|
||||
url: https://brittanychiang.com/halcyon-site/
|
||||
code: https://github.com/bchiang7/halcyon-site
|
||||
description: A minimal, dark theme for Sublime Text, Atom, VS Code, and more published to <a class="underline-link" href="https://packagecontrol.io/packages/Halcyon%20Theme">Package Control</a>, <a class="underline-link" href="https://atom.io/themes/halcyon-syntax">Atom Package Manager</a>, <a class="underline-link" href="https://marketplace.visualstudio.com/items?itemName=brittanychiang.halcyon-vscode">Visual Studio Marketplace</a>, and <a class="underline-link" href="https://www.npmjs.com/package/hyper-halcyon-theme">NPM</a>.
|
||||
used:
|
||||
- thing: JSON
|
||||
- thing: Gatsby
|
||||
- thing: Sublime Text
|
||||
- thing: Atom
|
||||
- thing: VS Code
|
||||
- thing: iTerm2
|
||||
- thing: Hyper
|
||||
|
||||
- name: Lonely Planet DBMS
|
||||
url: https://github.com/bchiang7/CS3200-Project
|
||||
|
||||
@@ -10,10 +10,10 @@ languages:
|
||||
frameworks:
|
||||
- item: Ember / Glimmer
|
||||
- item: Jekyll
|
||||
- item: D3
|
||||
- item: Node
|
||||
- item: Backbone
|
||||
- item: React
|
||||
- item: Backbone
|
||||
- item: D3
|
||||
- item: Cordova
|
||||
|
||||
tools:
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
$(function() {
|
||||
const d = new Date();
|
||||
const hours = d.getHours();
|
||||
const night = (hours >= 19) || (hours <= 7); // between 7pm and 7am
|
||||
const night = hours >= 19 || hours <= 7; // between 7pm and 7am
|
||||
const body = document.querySelector('body');
|
||||
const toggle = document.getElementById('toggle');
|
||||
const input = document.getElementById('switch');
|
||||
@@ -20,25 +20,26 @@ $(function() {
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
const introHeight = document.querySelector('.intro').offsetHeight;
|
||||
const topButton = document.getElementById('top-button');
|
||||
const $topButton = $('#top-button');
|
||||
|
||||
window.addEventListener('scroll', function() {
|
||||
window.addEventListener(
|
||||
'scroll',
|
||||
function() {
|
||||
if (window.scrollY > introHeight) {
|
||||
$topButton.fadeIn();
|
||||
} else {
|
||||
$topButton.fadeOut();
|
||||
}
|
||||
}, false);
|
||||
},
|
||||
false
|
||||
);
|
||||
|
||||
topButton.addEventListener('click', function() {
|
||||
$('html, body').animate({ scrollTop: 0 }, 500);
|
||||
});
|
||||
|
||||
|
||||
|
||||
const hand = document.querySelector('.emoji.wave-hand');
|
||||
|
||||
function waveOnLoad() {
|
||||
@@ -48,7 +49,9 @@ $(function() {
|
||||
}, 2000);
|
||||
}
|
||||
|
||||
setTimeout(function() { waveOnLoad(); }, 1000);
|
||||
setTimeout(function() {
|
||||
waveOnLoad();
|
||||
}, 1000);
|
||||
|
||||
hand.addEventListener('mouseover', function() {
|
||||
hand.classList.add('wave');
|
||||
@@ -58,7 +61,6 @@ $(function() {
|
||||
hand.classList.remove('wave');
|
||||
});
|
||||
|
||||
|
||||
window.sr = ScrollReveal({
|
||||
reset: false,
|
||||
duration: 600,
|
||||
@@ -72,5 +74,4 @@ $(function() {
|
||||
sr.reveal('.experience', { viewFactor: 0.2 });
|
||||
sr.reveal('.featured-projects', { viewFactor: 0.1 });
|
||||
sr.reveal('.other-projects', { viewFactor: 0.05 });
|
||||
|
||||
});
|
||||
|
||||
@@ -10,12 +10,13 @@
|
||||
background: $yellow;
|
||||
}
|
||||
|
||||
html, body {
|
||||
html,
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: $white;
|
||||
color: $dark-grey;
|
||||
font-family: $Apercu, $sans-serif-stack;
|
||||
font-family: $Apercu;
|
||||
line-height: 1.5;
|
||||
|
||||
a {
|
||||
@@ -141,7 +142,8 @@ html, body {
|
||||
transition: height 0.3s, opacity 0.3s, transform 0.3s;
|
||||
transform: translateY(-5px);
|
||||
}
|
||||
&:hover, &:focus {
|
||||
&:hover,
|
||||
&:focus {
|
||||
&:after {
|
||||
height: 2px;
|
||||
border-radius: 3px;
|
||||
@@ -164,7 +166,7 @@ html, body {
|
||||
position: relative;
|
||||
bottom: 2px;
|
||||
margin-left: 15px;
|
||||
content: "";
|
||||
content: '';
|
||||
background: url('../img/arrow.png') no-repeat center;
|
||||
background-size: 100%;
|
||||
width: 15px;
|
||||
@@ -208,7 +210,8 @@ html, body {
|
||||
right: 3px;
|
||||
}
|
||||
|
||||
&:hover, &:focus {
|
||||
&:hover,
|
||||
&:focus {
|
||||
transform: translateY(-10px);
|
||||
}
|
||||
img {
|
||||
@@ -217,11 +220,11 @@ html, body {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.waypoint {
|
||||
opacity: 0;
|
||||
transform: translate3d(0, 20px, 0);
|
||||
transition: opacity .6s cubic-bezier(.694,0,.335,1),transform .6s cubic-bezier(.694,0,.335,1);
|
||||
transition: opacity 0.6s cubic-bezier(0.694, 0, 0.335, 1),
|
||||
transform 0.6s cubic-bezier(0.694, 0, 0.335, 1);
|
||||
}
|
||||
|
||||
.in-view {
|
||||
|
||||
@@ -2,10 +2,7 @@
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: 1.1rem;
|
||||
font-family: 'Inconsolata', monospace;
|
||||
margin-top: 70px;
|
||||
color: $night;
|
||||
// background-color: $yellow;
|
||||
|
||||
&__light {
|
||||
width: 30px;
|
||||
@@ -20,7 +17,7 @@
|
||||
height: 25px;
|
||||
animation: pulsate 2s ease-out;
|
||||
animation-iteration-count: infinite;
|
||||
opacity: .0;
|
||||
opacity: 0;
|
||||
border: 3px solid $green;
|
||||
border-radius: 30px;
|
||||
}
|
||||
|
||||
@@ -1,21 +1,20 @@
|
||||
// Colors
|
||||
$night: #131417;
|
||||
$black: #36363C;
|
||||
$night: #191e27;
|
||||
$black: #36363c;
|
||||
$dark-grey: #444452;
|
||||
$grey: #777777;
|
||||
$blue: #007BFF;
|
||||
$blue: #007bff;
|
||||
$slate: #afafbf;
|
||||
$off-white: #e7e7e7;
|
||||
$white: #fff;
|
||||
$green: #BADA55;
|
||||
$purple: #7D0CE8;
|
||||
$red: #FF0000;
|
||||
$orange: #E8850C;
|
||||
$yellow: #FFF10D;
|
||||
$green: #bae67e;
|
||||
$purple: #7d0ce8;
|
||||
$red: #ff0000;
|
||||
$orange: #e8850c;
|
||||
$yellow: #ffcc66;
|
||||
|
||||
// Fonts
|
||||
$Apercu: 'Apercu';
|
||||
$sans-serif-stack: Source Sans Pro, Helvetica, Arial, sans-serif;
|
||||
$Apercu: 'Apercu', 'Source Sans Pro', Helvetica, Arial, sans-serif;
|
||||
|
||||
// Media queries
|
||||
$fifteen-inch: 1440px;
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -20,6 +20,7 @@ $(function() {
|
||||
}
|
||||
});
|
||||
|
||||
console.log('added a line here');
|
||||
|
||||
const introHeight = document.querySelector('.intro').offsetHeight;
|
||||
const topButton = document.getElementById('top-button');
|
||||
@@ -37,8 +38,6 @@ $(function() {
|
||||
$('html, body').animate({scrollTop: 0}, 500);
|
||||
});
|
||||
|
||||
|
||||
|
||||
const hand = document.querySelector('.emoji.wave-hand');
|
||||
|
||||
function waveOnLoad() {
|
||||
|
||||
Reference in New Issue
Block a user