在 HTML 中,可以通過設置上下左右鍵來控制頁面內容的展示方式。下面是一些實現方法:
/* 設置向上鍵控制圖片位置 */ img { position: relative; top: 0; transition: top 0.3s; } img:focus { top: -50px; } /* 設置向下鍵控制字體顏色 */ p { color: black; } p:focus { color: red; } /* 設置向左鍵控制背景顏色 */ body { background-color: white; } body:focus { background-color: grey; } /* 設置向右鍵彈出提示框 */ input[type="text"] { width: 200px; } input[type="text"]:focus + .tooltip { display: block; } .tooltip { display: none; background-color: yellow; padding: 5px; position: absolute; top: 20px; left: 220px; }