123456789101112131415161718192021222324252627282930 |
- let SHIYOU = {
- fn:{
- clktofade(){
- $('.welcome').fadeOut()
- }
- },
- bindevents:()=>{
- $('.welcome > video').bind('ended',()=>{
- $('.welcome').fadeOut()
- });
- $('.jumpvideo').click(()=>{
- $('.welcome').fadeOut()
- })
- $('.myBacImg').bind('mousewheel',()=>{
- return false
- });
-
- $('.myBacImg').bind('pointermove touchmove',()=>{
- return false
- });
- // e.addEventListener("pointermove", this.onPointerMove.bind(this)),
- },
- start(){
- this.bindevents()
- }
- }
- SHIYOU.start()
|