摘要: 要求:当鼠标从顶部滚动后,显示返回顶部按钮,点击按钮,页面平滑滚动到顶部,按钮隐藏。 1.css #scrollTop{ position:fixed; bottom: 20px; right: 20px; height: 0px; width: 45px; line-height: 45px; t 阅读全文
posted @ 2020-10-14 17:45 以深 阅读(616) 评论(0) 推荐(0) 编辑
摘要: 1. 内联式CSS(行内式),直接把CSS代码写入到HTML标签中。例如: ```<p style="color:red";font-size:12px>这里是12px红色的p标签。</p>```优点是十分的便捷、高效;但是同时也造成了不能够重用样式的缺点,如果代码行数到达一定长度不建议采用。2.  阅读全文
posted @ 2020-10-14 16:58 以深 阅读(2077) 评论(0) 推荐(0) 编辑
摘要: 一、3种实现方式 <!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <title>js点击事件</title> </head> <body> <!-- 第三种方式--> <button id="btn" onclick="t 阅读全文
posted @ 2020-10-14 16:45 以深 阅读(25299) 评论(0) 推荐(0) 编辑
TOP