Javascript는 Apple 터치 스크린 효과를 모방합니다.

php中世界最好的语言
풀어 주다: 2018-03-08 11:44:35
원래의
2543명이 탐색했습니다.

이번에는 Apple 터치스크린 효과를 모방하기 위한 Javascript를 가져왔습니다. Javascript를 사용하여 Apple 터치스크린 효과를 모방하는 경우의 주의 사항은 무엇입니까? 다음은 실제 사례입니다.

Apple 모방을 위한 Javascript 팁
코드를 페이지에 직접 입력하세요
코드에 중복이 있으므로 관심 있는 친구가 직접 수정할 수도 있습니다
버그가 있으면 댓글로 알려주세요

var new_element_N=document.createElement("style");
    new_element_N.innerHTML = '#drager {' +
        '     position: fixed;' +
        '     width: 35px;' +
        '     height: 35px;' +
        '     background-color: rgba(0, 0, 0, 0.2);' +
        '     z-index: 10000;' +
        '     cursor: pointer;' +
        '     top: 0px;' +
        '     left: 0px;' +
        '     border-radius: 30%;' +
        '     padding: 6px;' +
        ' }' +
        ' ' +
        ' #drager>div {' +
        '     border-radius: 50%;' +
        '     width: 100%;' +
        '     height: 100%;' +
        '     background-color: rgba(0, 0, 0, 0.3);' +
        '      transition: all 0.2s;' +
        '   -webkit-transition: all 0.2s;' +
        '   -moz-transition: all 0.2s;' +
        '   -o-transition: all 0.2s;' +
        ' }' +
        ' #drager:hover>div{' +
       '      background-color: rgba(0, 0, 0, 0.6);' +
       ' } ';
    document.body.appendChild(new_element_N);
    new_element_N=document.createElement('div');
    new_element_N.setAttribute("id","drager");
    new_element_N.style.top="100px";
    new_element_N.style.left="100px";
    new_element_N.innerHTML = &#39; <div></div>&#39; ;
    document.body.appendChild(new_element_N);
    //
    //
        var posX;
        var posY;     
        var screenWidth =document.documentElement.clientWidth;
        var screenHeight = document.documentElement.clientHeight;  
        var fdiv = document.getElementById("drager"); 
        fdiv.onmousedown=function(e)
        {
            screenWidth =document.documentElement.clientWidth;
            screenHeight = document.documentElement.clientHeight;  
            if(!e){ e = window.event; } //IE
            posX = e.clientX - parseInt(fdiv.style.left);
            posY = e.clientY - parseInt(fdiv.style.top);
            document.onmousemove = mousemove;          
        }
        document.onmouseup = function()//释放时自动贴到最近位置
        {
            document.onmousemove = null;
            if((parseInt(fdiv.style.top)+parseInt(fdiv.clientHeight)/2)<=(screenHeight/2)){//在上半部分
                if((parseInt(fdiv.style.left)+parseInt(fdiv.clientWidth)/2)<=(screenWidth/2)){//在左半部分
                    if((parseInt(fdiv.style.top)+parseInt(fdiv.clientHeight)/2)<=(parseInt(fdiv.style.left)+parseInt(fdiv.clientWidth)/2)){//靠近上方
                        fdiv.style.top="0px";
                    }else{//靠近左边
                        fdiv.style.left="0px";
                    }
                }else{//在右半部分
                    if((parseInt(fdiv.style.top)+parseInt(fdiv.clientHeight)/2)<=(screenWidth-(parseInt(fdiv.style.left)+parseInt(fdiv.clientWidth)/2)) ){//靠近上方
                        fdiv.style.top="0px";
                    }else{//靠近右边
                        fdiv.style.left=(screenWidth-parseInt(fdiv.clientWidth))+"px";
                    }
                }
            }else{ //下半部分
                 if((parseInt(fdiv.style.left)+parseInt(fdiv.clientWidth)/2)<=(screenWidth/2)){//在左半部分
                    if( (screenHeight-(parseInt(fdiv.style.top)+parseInt(fdiv.clientHeight)/2))<=(parseInt(fdiv.style.left)+parseInt(fdiv.clientWidth)/2)){//靠近下方
                        fdiv.style.top=(screenHeight-parseInt(fdiv.clientHeight))+"px";
                    }else{//靠近左边
                        fdiv.style.left="0px";
                    }
                }else{//在右半部分
                    if( (screenHeight-(parseInt(fdiv.style.top)+parseInt(fdiv.clientHeight)/2))<=(screenWidth-(parseInt(fdiv.style.left)+parseInt(fdiv.clientWidth)/2)) ){//靠近上方
                        fdiv.style.top=(screenHeight-parseInt(fdiv.clientHeight))+"px";
                    }else{//靠近右边
                        fdiv.style.left=(screenWidth-parseInt(fdiv.clientWidth))+"px";
                    }
                }
            }
        }
        function mousemove(ev)
        {
            if(ev==null){ ev = window.event;}//IE
            if((ev.clientY - posY)<=0){//超过顶部
                 fdiv.style.top="0px";
            }else if((ev.clientY - posY) >(screenHeight-parseInt(fdiv.clientHeight))){//超过底部
                fdiv.style.top=(screenHeight-parseInt(fdiv.clientHeight))+"px";
            }else{
                fdiv.style.top = (ev.clientY - posY) + "px";
            }
             
             if((ev.clientX- posX)<=0){//超过左边
                 fdiv.style.left="0px";
            }else if((ev.clientX - posX) >(screenWidth-parseInt(fdiv.clientWidth))){//超过右边
                fdiv.style.left=(screenWidth-parseInt(fdiv.clientWidth))+"px";
            }else{
                fdiv.style.left = (ev.clientX - posX) + "px";
            }
            // console.log( posX +"  "+ fdiv.style.left);
             
        }
       window.onload =  window.onresize = function() { //窗口大小改变事件
            screenWidth =document.documentElement.clientWidth;
            screenHeight = document.documentElement.clientHeight;  
            if( (parseInt(fdiv.style.top)+parseInt(fdiv.clientHeight))>screenHeight){//窗口改变适应超出的部分
                 fdiv.style.top=(screenHeight-parseInt(fdiv.clientHeight))+"px";
            }   
            if( (parseInt(fdiv.style.left)+parseInt(fdiv.clientWidth))>screenWidth){//窗口改变适应超出的部分
                 fdiv.style.left=(screenWidth-parseInt(fdiv.clientWidth))+"px";
            }   
            document.onmouseup.apply()
        };
        fdiv.addEventListener(&#39;touchstart&#39;,  fdiv.onmousedown, false);  
        fdiv.addEventListener(&#39;touchmove&#39;, function(event) {
                        // 如果这个元素的位置内只有一个手指的话
                        if (event.targetTouches.length == 1) {
                         event.preventDefault();// 阻止浏览器默认事件,重要 
                            var touch = event.targetTouches[0];
                            if((touch.pageY)<=0){//超过顶部
                                fdiv.style.top="0px";
                            }else if(touch.pageY>(screenHeight-parseInt(fdiv.clientHeight))){//超过底部
                                fdiv.style.top=(screenHeight-parseInt(fdiv.clientHeight))+"px";
                            }else{
                                fdiv.style.top = (touch.pageY-parseInt(fdiv.clientHeight)/2) + "px";
                            }
                             
                            if(touch.pageX<=0){//超过左边
                                fdiv.style.left="0px";
                            }else if( touch.pageX >(screenWidth-parseInt(fdiv.clientWidth))){//超过右边
                                fdiv.style.left=(screenWidth-parseInt(fdiv.clientWidth))+"px";
                            }else{
                                fdiv.style.left = (touch.pageX-parseInt(fdiv.clientWidth)/2) + "px";
                            }
                       }
                    }, false);
        fdiv.addEventListener(&#39;touchend&#39;, document.onmouseup , false);            
        fdiv.ondblclick=function(){//双击事件可能在手机端浏览器会与网页缩放事件冲突
            alert("发挥你们的想象力吧");
        }
로그인 후 복사

믿으세요 이 기사의 사례를 읽은 후, 더 흥미로운 정보를 보려면 PHP 중국어 웹사이트에 있는 다른 관련 기사를 주의 깊게 살펴보시기 바랍니다.

관련 읽기:

간단한 이미지 클릭 업로드 기능

JS가 동영상의 태그된 동영상 썸네일을 캡처할 수 있나요?

위 내용은 Javascript는 Apple 터치 스크린 효과를 모방합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!