naver / egjs

Javascript components group that brings easiest and fastest way to build a web application in your way.
https://naver.github.io/egjs
Other
935 stars 80 forks source link

Does flicking work well on old versions of IE? #241

Closed incleaf closed 8 years ago

incleaf commented 8 years ago

I tested on old versions of IE, and seems flicking doesn't work on IE7 and IE8. is it right?

jongmoon commented 8 years ago

Thank you for your concern~ :)

Unfortunately flicking is working from IE10+

image

http://naver.github.io/egjs/latest/doc/eg.Flicking.html

incleaf commented 8 years ago

Okay! Thanks :)

netil commented 8 years ago

@incleaf, even we documented to use over ie10, is able to use setting some option.

if you need to use on ie8, need to include hammerjs.compatible as below.

<!--[if IE 8]>
<script type="text/javascript" src="../dist/hammerjs.compatible.js"></script> 
<![endif]-->

And set inputType option to handle only mouse input

new eg.Flicking("#id", {
    inputType: ["mouse"]
});

On ie9 it mostly works without inconvenience. Checkout the demo. http://naver.github.io/egjs/demo/flicking/