NetBlog主题

纯HTML+CSS打造动画
Web前端

纯HTML+CSS打造动画

3242

<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><title>纯CSS动画</title><meta charset="utf-8" /><style>.tank{width:200px;height:…

精简CSS按扭样式
Web前端

精简CSS按扭样式

3034

<style>button{padding:5px 10px;margin-right: 12px;font-size: 12px;background-color: #609ee9;color:#fff;border:2px solid #609ee9;cursor: pointer;outline:none;border-radius:6px;}button:hover{background-color: #80b6f9;border-color: #80b6f9}button:active…