JS實現文字向上輪轉(文字直播的感覺)

2022-03-19 01:30:13 字數 1314 閱讀 6291

今天在公司的專案中提到乙個功能,就是講最新的使用者動態在首頁中直播輪轉出來,一開始沒什麼思路,後來看了一些資料,總算知道了怎麼搞,記錄下,希望給大家一些幫助

這裡是個demo

html頁面:

js**:

function marquee()else

this.ctl=this.startid=this.stop=this.mouseover=0;

this.id.style.overflowx=this.id.style.overflowy="hidden";

this.id.nowrap=true;

this.id.style.width=this.width;

this.id.style.height=this.height;

this.clientscroll=this.direction>1?this.id.scrollwidth:this.id.scrollheight;

this.id.innerhtml+=this.id.innerhtml;

this.start(this,this.timer,this.waittime,this.stoptime);

}marquee.prototype.start=function(msobj,timer,waittime,stoptime)

msobj.continue=function()

else

}msobj.pause=function()

msobj.begin=function()

msobj.id.onmouseout=function()}

}settimeout(msobj.begin,stoptime);

}marquee.prototype.scroll=function()

else

break;

case 1:

this.ctl+=this.step;

if(this.ctl>=this.scrollstep&&this.waittime>0)

else

break;

case 2:

this.ctl+=this.step;

if(this.ctl>=this.scrollstep&&this.waittime>0)

else

break;

case 3:

this.ctl+=this.step;

if(this.ctl>=this.scrollstep&&this.waittime>0)

else

break;}}

效果還行,功能都實現了,可以根據自己的需要進行修改

Python實現PDF轉文字

安裝依賴 pip install pdfminer3k coding utf 8 import sys import importlib importlib.reload sys from pdfminer.pdfparser import pdfparser,pdfdocument from pd...

Springboot實現語音聽寫轉文字功能

解決思路 語音識別是一門交叉學科。近二十年來,語音識別技術取得顯著進步,開始從實驗室走向市場。人們預計,未來10年內,語音識別技術將進入工業 家電 通訊 汽車電子 醫療 家庭服務 消費電子產品等各個領域。語音識別聽寫機在一些領域的應用被美國新聞界評為1997年計算機發展十件大事之一。很多專家都認為語...

語音轉文字的體驗報告

1.語音轉文字比較方便,等手不方便的時候,或者需要快速敘述一段話的時候就很方便 2.語音轉文字對普通話不友好的使用者提供了很方便的操作,特別是語音轉文字支援方言了 3.還會根據使用者說話時候的停頓,來判斷是不是需要新增標點符號 4.對打字慢的使用者需求還是比較高的 5.就是離線狀態下沒有語音轉文字的...