⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 3.44 textarea内实现行的翻页效果.htm

📁 字符特效和输入框特效
💻 HTM
字号:
<html> 
<head> 
<title>表格显示数据表记录</title> 
</head> 
<body> 
<textarea id=myTxt style="overflow:hidden" width="20" height="20">
测试数据
测试数据
测试数据
测试数据
阿斗司法司法
测试数据
测试数据
测试数据
测试数据
测试数据
测试数据如肺炎
</textarea> 
<button onmouseup=stop() onmousedown=up()>上翻</button><button onmousedown=down() onmouseup=stop()>下翻</button> 
<script> 
var Timer=null; 
function up() 
 {myTxt.doScroll("scrollBardown") //调用滚动条,实现上翻
  Timer=setTimeout("up()",100) 
 } 
function down() 
{myTxt.doScroll("scrollBarUp") //调用滚动条,实现下翻
  Timer=setTimeout("down()",100) 
 } 
function stop() 
{clearTimeout(Timer)} //清空定时器
</script> 
</body> 
</html> 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -