Skip to content

画一个三角形

代码

html
<div style="    
    width: 0;
    height: 0;
    border-top: 50px solid #00e0ff;
    border-left: 50px solid #a6fff2;
    border-right: 50px solid #74f9ff;
    border-bottom: 50px solid #e8ffe8;">
</div>

隐藏就用transparent

丝滑跳转

css
html{
  scroll-behavior: smooth;
}