随笔分类 -  小效果

摘要:原生:点击创建div,且能够拖动 css、html <style type="text/css"> .active{ width: 100px; height: 100px; position: absolute; } </style> <body> <input type="button" val 阅读全文
posted @ 2019-11-22 10:29 野鹤亦闲云 阅读(142) 评论(0) 推荐(0)
摘要:用原生js,实现放大镜效果 css <style> *{ margin:0; padding:0; } #box{ width:350px; height:350px; border:1px solid #000; margin:100px; position:relative; } #big{ w 阅读全文
posted @ 2019-11-21 17:20 野鹤亦闲云 阅读(219) 评论(0) 推荐(0)
摘要:animate的手风琴效果 1 <style type="text/css"> 2 * { 3 margin: 0; 4 padding: 0; 5 } 6 ul{ 7 list-style: none; 8 } 9 10 .wrap { 11 width: 1020px; 12 margin: 1 阅读全文
posted @ 2019-11-21 17:06 野鹤亦闲云 阅读(271) 评论(0) 推荐(0)