Phone in Text Effect - Ash Princess Kawaii
Breaking News
Loading...
09 Februari 2018

Phone in Text Effect

Februari 09, 2018
Phone in Text Effect

Phone in Text Effect, efek angka animasi seperti pada nomor telepon.

<script type="text/javascript">
// <![CDATA[
var bgcolour="#da81f5"; // background colour
var hlcolour="#ddccff"; // highlight colour
var speed=250; // speed colours change, 1 second = 1000
var p_txt;
window.onload=function() { if (document.getElementById) {
  var phoni;
  var phone=document.getElementById("phonein");
  p_txt=phone.firstChild.nodeValue;
  while (phone.childNodes.length) phone.removeChild(phone.childNodes[0]);
  for (var i=0; i<p_txt.length; i++) {
    phoni=document.createElement("div");
 phoni.style.display="inline";
    phoni.setAttribute("id", "phon"+i);
    phoni.appendChild(document.createTextNode(p_txt.charAt(i)));
    phone.appendChild(phoni);
  }
  phone_me((p_txt=p_txt.length)-1);
}}

function phone_me(p_cnt) {
  var p_tmp=document.getElementById("phon"+p_cnt);
  p_tmp.style.fontWeight="normal";
  if (document.all) p_tmp.style.filter='';
  p_tmp.style.backgroundColor=bgcolour;
  p_cnt=++p_cnt%p_txt;
  p_tmp=document.getElementById("phon"+p_cnt);
  if (p_tmp.firstChild.nodeValue!=" ") {
    p_tmp.style.fontWeight="bold";
    if (document.all) p_tmp.style.filter="GLOW(strength=3, color=#"+bgcolour+")";
    p_tmp.style.backgroundColor=hlcolour;
  }
  setTimeout("phone_me("+p_cnt+")", speed);
}
// ]]>
</script>

See the Pen Phone in Text Effect by Erna Ayuning Nareswari (@ashavenger) on CodePen.

0 Comments:

Posting Komentar