为了账号安全,请及时绑定邮箱和手机立即绑定

如何创建html滚动条?

如何创建html滚动条?

莫回无 2023-06-27 18:18:52
这个想法是创建一个 html 滚动条来实时接收日志。我正在使用FLASK,它对于创建网页非常有用,但到目前为止只知道处理该工具的网页的基础知识。
查看完整描述

2 回答

?
繁华开满天机

TA贡献1816条经验 获得超4个赞

  1. 获取一些文字

  2. 将其填充到元素中

  3. 将元素滚动到底部

// don't need this. It's to get the posts from the fake API

let id = 0;


// get a reference to the logs element

const logs = document.getElementById("logs");


// this takes some text, wraps in in a <pre> tag and returns the element

function makeLogEntry(str) {

  const el = document.createElement("pre");

  el.innerText = str;

  return el;

}


// This is just to tick up the post id and roll it back to 1 if we go over 100, since the fake api only has 100 posts

function getId() {

  return ++id > 100 ? 1 : id;

}


function getPost(id) {

  fetch(`https://jsonplaceholder.typicode.com/posts/${id}`)

    .then(response => response.json())

    .then(json => {

      // wrap the log message in a tag and append it to the logs

      logs.append(makeLogEntry(json.title));

      

      // scroll the logs element to the bottom

      // see (https://stackoverflow.com/questions/270612/scroll-to-bottom-of-div)

      logs.scrollTop = logs.scrollHeight;

    })

}


// fetch stuff every 2 seconds

setInterval(() => getPost(getId()), 2000);

#logs {

  width: 100%;

  height: 100px;

  border: 1px solid #ddd;

  overflow: scroll;

}

<div id="logs"></div>


查看完整回答
反对 回复 2023-06-27
?
肥皂起泡泡

TA贡献1829条经验 获得超6个赞

fetch 您必须使用 javascript ,

您的服务器应该提供数据。然后你使用 JS DOM 将数据放入你想要放置的容器中。然后,要启用滚动,您必须编写一个包含区域大小和规则的 css overflow-y:scroll文件。

查看完整回答
反对 回复 2023-06-27
  • 2 回答
  • 0 关注
  • 127 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信