1번
<style>
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){
html{
overflow: hidden;
height: 100%;
}
body{
overflow: auto;
height: 100%;
}
}
</style>
2번
<script>
if(navigator.userAgent.match(/Trident\/7\./)) {
document.body.addEventListener("mousewheel", function() {
event.preventDefault();
var wd = event.wheelDelta;
var csp = window.pageYOffset;
window.scrollTo(0, csp - wd);
});
}
</script>
'PROGRAM > JAVASCRIPT' 카테고리의 다른 글
유튜브 api (0) | 2018.04.24 |
---|---|
jQuery 없이 사용 (0) | 2016.09.20 |
PUSH 배열 끝에 삽입 (0) | 2015.07.21 |
자바스크립트 스코프 클로저 (0) | 2015.06.23 |
날씨위젯 (0) | 2015.06.02 |