這篇文章給大家分享的是有關(guān)如何使用Css3實(shí)現(xiàn)炫酷的打字動畫的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價比淮安區(qū)網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式淮安區(qū)網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋淮安區(qū)地區(qū)。費(fèi)用合理售后完善,十載實(shí)體公司更值得信賴。
.box {
width:100%;
height:500px;
text-align:center;
position:relative;
}
.container {
width:80%;
height:400px;
border:1px solid red;
text-align:left;
margin:0 auto;
}
.container span {
display:inline-block;
border:1px solid red;
transition: all 2s;
transform:translateY(0px) rotate(0deg);
font-size:14px;
}
textarea {
width:200px;
resize:none;
height:20px;
line-height:20px;
padding:10px 0px;
font-size:14px;
font-weight:400;
}
.clone {
font-size:14px;
border:1px solid red;
width:80%;
height:20px;
margin:0 auto;
line-height:20px;
padding:10px 0px;
text-align:left;
visibility:hidden;
}
.clone span {
transition:all 2s;
position:absolute;
}
//計(jì)算出input輸入框的偏移值
var container = document.querySelector(".container");
var inner = document.querySelector(".inner");
var clone = document.querySelector(".clone");
var textarea = document.querySelector(".textarea");
var offx = (container.offsetWidth - textarea.offsetWidth-20)/2;
var offy = (container.offsetHeight + inner.offsetHeight);
//創(chuàng)造一個span標(biāo)簽 需要注入需要注入起始坐標(biāo)
function createspan(text,x,y) {
this.text = text;
this.x = x;
this.y = y;
this.init = {};
}
createspan.prototype.render = function() {
var span = document.createElement("span");
container.appendChild(span);
span.style.display = "inline-block";
span.style.transform = "translateX("+this.x+"px) translateY("+this.y+"px) rotate(720deg)";
span.style.transition = "all 2s";
span.innerHTML = this.text;
this.init = span;
}
createspan.prototype.recover = function() {
var that = this;
setTimeout(function(){
that.init.style.transform = "translateX(0px) translateY(0px) rotate(0deg)";
},10)
}
var newtext = "";
var oldtext = "";
var x = 0;
var y = 0;
var total = "";
//監(jiān)聽textarea文本框的輸入變化情況
textarea.addEventListener("input",function(){
var text = "";
if (inner.offsetWidth >= container.offsetWidth ) {
offx = (container.offsetWidth - textarea.offsetWidth-20)/2 - textarea.offsetWidth;
}
else if (inner.offsetWidth >= textarea.offsetWidth*3) {
offx = (container.offsetWidth - textarea.offsetWidth-20)/2 - textarea.offsetWidth*3;
}
else if (inner.offsetWidth >= textarea.offsetWidth*2) {
offx = (container.offsetWidth - textarea.offsetWidth-20)/2 - textarea.offsetWidth*2;
} else if(inner.offsetWidth>=textarea.offsetWidth) {
offx = (container.offsetWidth - textarea.offsetWidth-20)/2 - textarea.offsetWidth;
}
//先算文字的變化 兩種情況一種是增加一種是減少
newtext = textarea.value;
oldtext = inner.innerHTML;
newtext = newtext.trim();
//添加字符
if(newtext.length > oldtext.length) {
for(var i = 0;i < newtext.length;i++) {
if(newtext[i] != oldtext[i]) {
text += newtext[i];
inner.innerHTML = newtext;
}
}
total += text;
//生成
for(var i =0;i < text.length;i++) {
var a = new createspan(text[i],offx,offy);
a.render();
a.recover();
}
}
//刪除字符
})
感謝各位的閱讀!關(guān)于“如何使用Css3實(shí)現(xiàn)炫酷的打字動畫”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!