php短視訊原始碼,點贊時會有大拇指動畫飄起

zhibo系統開發發表於2022-07-04

php短視訊原始碼,點贊時會有大拇指動畫飄起

(function() {
    var coreSocialistValues 
      , index = Math.floor(Math.random() * coreSocialistValues.length);
    document.body.addEventListener('click', function(e) {
        if (e.target.tagName == 'A') { return; }
        var x = e.pageX
          , y = e.pageY
          , span = document.createElement('span');
        span.textContent = coreSocialistValues[index];
        index = (index + 1) % coreSocialistValues.length;//取模迴圈
        span.style.cssText = ['z-index: 9999999; position: absolute; font-weight: bold; color: #ff6651; top: ', y - 20, 'px; left: ', x, 'px;'].join(''); document.body.appendChild(span); animate(span); });
    function animate(el) {//動畫 var i = 0 , top = parseInt(el.style.top) , id = setInterval(frame, 16.7); function frame() {//幀 if (i > 180) { clearInterval(id); el.parentNode.removeChild(el); } else { i += 2; el.style.top = top - i + 'px'; el.style.opacity = (180 - i) / 180; } } }
}());

以上就是 php短視訊原始碼,點贊時會有大拇指動畫飄起,更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2904108/,如需轉載,請註明出處,否則將追究法律責任。

相關文章