JS 문제 응용

2321 단어
  • 투명도를 고려할 필요가 없는 애니메이션 함수를 실현한다
    function animate(ele, tarStyle, tarValue) {
        var fullStyleValue = getComputedStyle(ele)[tarStyle]
        var currentValue = parseFloat(fullStyleValue)
        var animationId = setInterval(function() {
            if (currentValue !== tarValue) {
                currentValue += Math.ceil((tarValue - currentValue) / 10)
            } else {
                clearInterval(animationId)
            }
            ele.style[tarStyle] = currentValue + 'px'
        }, 20)
    }
    
  • 절류 함수의 실현(Vue1의 debounce와 유사)
    function debounce(fn, delay) {
        var timer = null
        return function () {
            var context = this
            var args = arguments
            clearTimeout(timer)
            timer = setTimeout(function () {
                fn.apply(context, args)
            }, delay)
        }
    }
    
  • li 클릭 시 alert 인덱스
    var lis = document.getElementsByTagName('li')
    
    // 1 -  
    document.getElementById('container').addEventListener('click', function(e) {
        if (e.target.nodeName === 'LI') {
            console.log(Array.prototype.indexOf.call(lis, e.target));
        }
    })
    
    // 2 -  onclick
    Array.prototype.forEach.call(lis, function(item, index) {
        item.onclick = function() {
            console.log(index);
        }
    })
    
    // 3 -  onclick, let
    for (let i = 0; i < lis.length; i++) {
        lis[i].onclick = function() {
            console.log(i);
        }
    }
    
    // 4 -  onclick, i 
    for (var i = 0; i < lis.length; i++) {
        lis[i].onclick = (function(arg) {
            return function() {
                console.log(arg);
            }
        })(i)
    }
    
  • 요소 집합 페이지의 왼쪽, 맨 위의 거리를 가져옵니다
    //  。 getBoundingClientRect() , 
    function offset(t) {
        var top = t.offsetTop
        var left = t.offsetLeft
        var posParent = t.offsetParent
        while (posParent !== null) {
            top += posParent.offsetTop
            left += posParent.offsetLeft
            posParent = posParent.offsetParent
        }
        return { top: top, left: left }
    }
    
  • 일반 URL의 정규 일치
    //  +  http https  +  ( '-' + '.') +   +  ('/' +   ) +  
    /^(http:\/\/|https:\/\/)?([\w-]+\.)+[\w-]+(\/\S+)+$/
    
  • 좋은 웹페이지 즐겨찾기