HTML滿屏愛心源代碼的實現(xiàn)效果非常的萌,下面就讓我們一起來學習如何實現(xiàn)吧!
/* HTML滿屏愛心源代碼 */ html, body { width: 100%; height: 100%; margin: 0; padding: 0; background: #f2f2f2; } .container { position: relative; width: 100%; height: 100%; overflow: hidden; z-index: -1; } .heart { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 10px; height: 10px; border-radius: 50%; background: #f00; animation: heartbeat 1s infinite linear; } .heart::before, .heart::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 50%; background: #f00; } .heart::before { transform: translate(-5px, 0); } .heart::after { transform: translate(5px, 0); } @keyframes heartbeat { 0% { transform: scale(1); } 50% { transform: scale(1.5); } 100% { transform: scale(1); } }
以上就是 HTML 滿屏愛心源代碼的全部內(nèi)容,我們可以看到代碼非常簡單,只需要利用 CSS 中的 position 屬性,再加入動畫的控制,就能完成一個非常萌的頁面展示效果。