💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
[TOC] ## 滚动指示器,页面顶端显示进度条 ``` <style> .main { margin: 0; padding: 0; display: block; height: 30000px; text-align: center; line-height: 100px; } body { margin: 0; padding: 0; background: linear-gradient(to right top, #369 50%, #fff 50%); background-size: 100% calc(100% - 99vh); } body:before { content: ''; position: fixed; top: 4px; bottom: 0; width: 100%; z-index: -1; background: #fff; } </style> <div class="main"> <h1>滚动鼠标</h1> </div> ```