10 2022 档案
摘要:该标签不是HTML3.2的一部分,并且只支持MSIE3以后内核,所以如果你使用非IE内核浏览器(如:Netscape)可能无法看到下面一些很有意思的效果 该标签是个容器标签 语法: <marquee></marquee> 简单的例子: <marquee><font size=+3 color=red
阅读全文
摘要:<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>BFC外边距重叠</title> <style type="text/css"> .box1{ width: 100px; height: 100px; background-co
阅读全文
摘要:<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <script type="text/javascript"> // 求1--100之间,除了35、45、60之外所有5的倍数的和 window.onload =
阅读全文
摘要: 1、变量加上索引名 <?php $student[0]=10 ; $student[1]='哈哈哈'; $student[2]=true; $student[3]=60.5; echo $student[1]; ?> 输出显示:哈哈哈 2、$student[]=10; $student[]='哈
阅读全文
摘要:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>三级导航</title> <style> * { margin:0; padding:0; } ul,ol,li { list-style: none; } a
阅读全文
摘要:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document<
阅读全文
摘要:<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> </head> <body> <style type="t
阅读全文
摘要:生命周期钩子函数速查表 # React生命周期钩子函数 ## 页面渲染期 * constructor 构造函数 在所有函数执行之前它先执行(数据接收 实现继承super(props)) * UNSAFE_componentWillMount 组件将要挂载(数据挂载之前 可以操作数据 不可以操作dom
阅读全文
摘要:一、介绍 Vue CLI 是一个基于 Vue.js 进行快速开发的完整系统。有三个组件: CLI:@vue/cli 全局安装的 npm 包,提供了终端里的vue命令(如:vue create 、vue serve 、vue ui 等命令) CLI 服务:@vue/cli-service是一个开发环境
阅读全文
摘要:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>阴阳</title> <style> .yinyang { width: 200px; height: 99px; border:1px solid #000;
阅读全文