WEIrq

2021年8月25日

JavaScript基础(一)——引入方式、变量

摘要: 一.引入方式 1.外部引入:<script type="application/javascript" src="./demo.js"> </script> 2.内嵌:<script type="application/javascript"> alert("你好"); </script> 3.内联 阅读全文

posted @ 2021-08-25 15:51 WEIrq 阅读(357) 评论(0) 推荐(0) 编辑

CSS基础——样式效果

摘要: 1.圆角: border-radius 渐变:background-image: linear-gradient #d1{ width:100px; height: 100px; background: rgba(78,34,89,1.00); border: 1px solid rgba(211, 阅读全文

posted @ 2021-08-25 15:24 WEIrq 阅读(73) 评论(0) 推荐(0) 编辑

CSS基础——定位

摘要: 定位方法: 1.固定定位:通过设定left right top bottom来进行定位 不会随着滚动条而变化 2.相对定位:相对于该元素本身应该在的位置 3.绝对定位:相对于具有position样式的父元素定位,如果父元素没有,最后找到body 示例: (1)固定定位: #d1{ width:100 阅读全文

posted @ 2021-08-25 12:00 WEIrq 阅读(46) 评论(0) 推荐(0) 编辑

CSS作业展示——网站

摘要: 作业展示: 表头以及标题: 图标定位: 横向列表: 列表图标: 阅读全文

posted @ 2021-08-25 11:41 WEIrq 阅读(34) 评论(0) 推荐(0) 编辑

导航