Skip to content

Instantly share code, notes, and snippets.

View PopYg's full-sized avatar

Jeong YG PopYg

View GitHub Profile
@PopYg
PopYg / em.scss
Created August 14, 2018 06:58 — forked from ngryman/em.scss
sass px to em mixin
// http://viljamis.com/blog/2013/prototyping-responsive-typography/?utm_source=Responsive+Design+Weekly&utm_campaign=76e7785581-Responsive_Design_Weekly_046&utm_medium=email
$browser-context: 16; // Default
@function em($pixels, $context: $browser-context) {
@return #{$pixels/$context}em
}
@PopYg
PopYg / gist:2ac73a21053c4f3d972d214ce07495a9
Created January 19, 2018 06:38
스크롤에 따른 오브젝트 상하 모션 진행중
var secTopSet = [
[".js-scr-sec", 100, .5, 100],
[".js-scr-sec2", 100, .5, 100]
];
var scrInnerStep = [];
function scrollEvent() {
scrollSet();
scrollMotion(0);
$window.scroll(function () {