CSS向下箭頭全屏滾動是網(wǎng)頁設計中常見的效果,能夠給用戶帶來良好的視覺體驗。本文將介紹如何利用CSS實現(xiàn)向下箭頭全屏滾動的效果。
/*先定義箭頭樣式*/ .arrow-down { position: absolute; left: 50%; bottom: 50px; transform: translateX(-50%); width: 60px; height: 60px; border: 2px solid #fff; border-radius: 50%; cursor: pointer; animation: arrow 1.5s ease-in-out infinite; } /*定義箭頭動畫*/ @keyframes arrow { 0% { opacity: 1; bottom: 50px; } 50% { opacity: 0; bottom: 70px; } 100% { opacity: 1; bottom: 50px; } } /*全屏滾動*/ html,body{ height:100%; overflow:hidden; } /*定義滾動頁面*/ .section{ height:100%; display:flex; flex-direction:column; justify-content:center; align-items:center; } /*滾動條樣式*/ ::-webkit-scrollbar { width: 6px; } ::-webkit-scrollbar-thumb { border-radius: 4px; background-color: rgba(0,0,0,0.3); } ::-webkit-scrollbar-track { border-radius: 4px; background-color: rgba(0,0,0,0.1); }
通過以上代碼,我們實現(xiàn)了向下箭頭的定義和動畫,以及全屏滾動內容的定義。通過這樣的設置,我們的網(wǎng)頁就能夠帶來更加豐富動感的視覺效果。
上一篇docker多開挖礦
下一篇jquery+刪除此行