Skip to content

Instantly share code, notes, and snippets.

View just1and0's full-sized avatar
🏠
working from home!

Oluwatobi Shokunbi just1and0

🏠
working from home!
View GitHub Profile
@just1and0
just1and0 / media-query.css
Created March 13, 2019 11:13 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
@just1and0
just1and0 / fade-title-up-and-down-onscroll.html
Created December 28, 2017 12:01 — forked from stephenscaff/fade-title-up-and-down-onscroll.html
Fade hero title down + up on scroll with a touch of jquery and CSS keyframes. No keyframe support? Loser. But, no worries, just fade title in and out with animate opacity then.
<!DOCTYPE html>
<head>
<!-- CSS
================================================== -->
<style>
*, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;