css .xxx { max-height : calc(100vh - 50px); max-height : calc(var(--vh, 1vh) * 100 - 50px); } js(jQuery) var vh = window.innerHeight * 0.01 document.documentElement.style.setProperty('--vh', `${vh}px`) window.addEventListener('resize', () => { var vh = window.innerHeight * 0.01 document.documentElement.style.setProperty('--vh', `${vh}px`) }) $(".xxx").css({ "max-height" : "calc(100vh - " + "50px..
# http://simbyone.com/demo/30-css-hover-effects-for-buttons/# https://tympanus.net/Development/CreativeButtons/# https://codepen.io/rauldronca/pen/mEXomp# http://ianlunn.github.io/Hover/#effects# https://codepen.io/davidicus/pen/emgQKJ# https://www.inserthtml.com/demos/css/button-styles/ # https://blog.prototypr.io/stunning-hover-effects-with-css-variables-f855e7b95330 # 메테리얼 효과 : https://bashoo..
- Total
- Today
- Yesterday