美文网首页
react 点击滚动

react 点击滚动

作者: 一只哈哈 | 来源:发表于2021-12-31 11:06 被阅读0次
    .box {
      width: calc(100vw - 450px);
      margin: 0;
      padding: 0;
      overflow-x: auto;
    }
    
    <Button
            icon={<CaretRightOutlined />}
            type={'link'}
            onClick={() => {
            // scroll.current?.scrollTo(scroll.current?.scrollLeft + 100, 0);
             scroll.current?.scrollTo({
              left: scroll.current?.scrollLeft + 300,
               behavior: 'smooth',
                });
               }}
        />
    

    相关文章

      网友评论

          本文标题:react 点击滚动

          本文链接:https://www.haomeiwen.com/subject/jisgqrtx.html