摘要: <?xml version="1.0" encoding="UTF-8"?> <stdents> <!--每个student表示一个学生对象--> <student code="stu001"> <name>歌谣</name> <birth>1996-09-09</birth> <sex>男</se 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(23) 评论(0) 推荐(0)
摘要: //class反射编程 //定义一个学生类 public class test124 { public String name; protected int age; double height; private double money; public void setName(String na 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(39) 评论(0) 推荐(0)
摘要: //class反射编程 //定义一个学生类 public class test124 { public String name; protected int age; double height; private double money; public void setName(String na 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(33) 评论(0) 推荐(0)
摘要: //class反射编程 //定义一个学生类 public class test124 { public String name; protected int age; double height; private double money; public test124(String name,In 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(39) 评论(0) 推荐(0)
摘要: //class反射编程 //定义一个学生类 public class test124 { public String name; protected int age; double height; private double money; public test124(String name,In 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(43) 评论(0) 推荐(0)
摘要: 定义一个枚举类 //枚举类型 public enum test122 { RED, GREEN, BLUE; } 测试类 public class test123 { public static void main(String[] args){ System.out.println( test12 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(31) 评论(0) 推荐(0)
摘要: import java.io.IOException; import java.net.DatagramPacket; import java.net.DatagramSocket; import java.net.InetSocketAddress; import java.net.SocketA 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(30) 评论(0) 推荐(0)
摘要: import java.io.IOException; import java.net.DatagramPacket; import java.net.DatagramSocket; import java.net.InetSocketAddress; import java.net.SocketA 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(185) 评论(0) 推荐(0)
摘要: 1安装sql server数据库 2打开eclipse写入以下代码 package sjk; import java.sql.*; public class Main { //这里可以设置数据库名称 private final static String URL = "jdbc:sqlserver: 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(249) 评论(0) 推荐(0)
摘要: class Ck { private char[] r1 = new char[8]; private int wp = 0; public synchronized void shengchan(char aa) { while (wp == r1.length) //满了 try { this. 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(37) 评论(0) 推荐(0)
摘要: socket服务端 import java.io.IOException; import java.net.ServerSocket; import java.net.Socket; //socket服务端 public class test114 { public static void main 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(82) 评论(0) 推荐(0)
摘要: import java.net.InetAddress; import java.net.InetSocketAddress; import java.net.UnknownHostException; //inetaddress public class test112 { public stat 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(28) 评论(0) 推荐(0)
摘要: import java.io.IOException; import java.net.MalformedURLException; import java.net.URL; import java.nio.charset.MalformedInputException; //url public 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(23) 评论(0) 推荐(0)
摘要: public class SynMethon implements Runnable{ private double money=1000000; public void run(){ dbMoney(); } //同步方法 private synchronized void dbMoney(){ 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(30) 评论(0) 推荐(0)
摘要: 定义一个dog类 public class Dog { private String name; public String getName() { return name; } public void setName(String name) { this.name = name; } } 定义一 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(30) 评论(0) 推荐(0)
摘要: public class SynCode implements Runnable{ public void run(){ synchronized (this){ Thread current=Thread.currentThread();//获取当前线程 for(int i=1;i<10;i++) 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(65) 评论(0) 推荐(0)
摘要: import java.util.PrimitiveIterator; public class Classroon implements Runnable { private Thread student;//学生线程 private Thread teacher;//老师线程 public Cl 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(35) 评论(0) 推荐(0)
摘要: //利用两个线程实现1到100的计算 public class MyRannable implements java.lang.Runnable{ private Thread th_0; private Thread th_2; int sum=0;//存储累加和的结果 int i=1; publ 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(226) 评论(0) 推荐(0)
摘要: //线程 public class test102 extends Thread{ public void run(){ while (true){ System.out.println("我是线程1"+this.getName()); try { Thread.sleep( 1000 ); }ca 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(49) 评论(0) 推荐(0)
摘要: //线程 public class test102 extends Thread{ public void run(){ while (true){ System.out.println("我是线程1"+this.getName()); try { Thread.sleep( 1000 ); }ca 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(31) 评论(0) 推荐(0)
摘要: import javax.imageio.IIOException; import java.io.*; import java.util.Date; //字符输入流 public class FileManagerChar { public static void readCharFile(Fil 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(35) 评论(0) 推荐(0)
摘要: import javax.imageio.IIOException; import java.io.*; import java.util.Date; //字符输入流 public class FileManagerChar { public static void readCharFile(Fil 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(37) 评论(0) 推荐(0)
摘要: import javax.imageio.IIOException; import java.io.*; import java.util.Date; //字符输入流 public class FileManagerChar { public static void readCharFile(Fil 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(42) 评论(0) 推荐(0)
摘要: import javax.imageio.IIOException; import java.io.*; import java.util.Date; //字符输入流 public class FileManagerChar { public static void readCharFile(Fil 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(46) 评论(0) 推荐(0)
摘要: import javax.imageio.IIOException; import java.io.*; import java.util.Date; //字符输入流 public class FileManagerChar { public static void readCharFile(Fil 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(28) 评论(0) 推荐(0)
摘要: import javax.imageio.IIOException; import java.io.*; import java.util.Date; //字符输入流 public class FileManagerChar { public static void readCharFile(Fil 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(53) 评论(0) 推荐(0)
摘要: import javax.imageio.IIOException; import java.io.*; import java.util.Date; //字符输入流 public class FileManagerChar { public static void readCharFile(Fil 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(28) 评论(0) 推荐(0)
摘要: import javax.imageio.IIOException; import java.io.*; import java.util.Date; //字符输入流 public class FileManagerChar { public static void readCharFile(Fil 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(45) 评论(0) 推荐(0)
摘要: //3个参数读取二进制文件 import java.io.*; public class FileManage { public static void readBitFile(String filename){ //1建立目标要读取的文件对象 File file=new File( filenam 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(39) 评论(0) 推荐(0)
摘要: import java.io.*; public class FileMana { public static void readBitFile(String filename){ //1建立目标要读取的文件对象 File file=new File( filename ); //2基于目标对象建立 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(40) 评论(0) 推荐(0)
摘要: import java.io.File; import java.io.IOException; import java.net.URI; import java.util.List; //文件管理类 public class FileManager { public static File cre 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(30) 评论(0) 推荐(0)
摘要: import java.io.IOException; import java.net.URI; import java.util.List; //文件管理类 public class FileManager { public static File createFileAction(URI uri 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(30) 评论(0) 推荐(0)
摘要: import java.io.IOException; import java.net.URI; import java.util.List; //文件管理类 public class FileManager { public static File createFileAction(URI uri 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(27) 评论(0) 推荐(0)
摘要: import java.io.File; import java.io.IOException; import java.net.URI; import java.util.List; //文件管理类 public class FileManager { public static File cre 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(32) 评论(0) 推荐(0)
摘要: //file类的基本创建 import java.io.File; public class test85 { public static void main(String[] args){ //创建文件对象 String filePath="e:\\1.txt"; File file=new Fi 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(34) 评论(0) 推荐(0)
摘要: //自定义异常类 public class ArrayElement extends Exception{ public static final int MAX_NUM=1000; private static final String MESSAGE="集合存储元素过多"; public Arr 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(56) 评论(0) 推荐(0)
摘要: import java.io.IOException; import java.sql.SQLException; //java异常处理 //异常 public class test82 { //定义方法声明定义异常,在满足条件时抛出异常对象,程序转向异常处理 public double count 阅读全文
posted @ 2022-07-05 18:43 前端导师歌谣 阅读(28) 评论(0) 推荐(0)
摘要: <!-- 在绑定事件处理函数的时候,可以使用 () 传递参数 --> <!-- v-on: 指令可以被简写为 @ --> <button @click="add(1)">+1</button> <button @click="sub">-1</button> 直接用@进行数据绑定 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(36) 评论(0) 推荐(0)
摘要: // methods 的作用,就是定义事件的处理函数 methods: { add(n) { // 在 methods 处理函数中,this 就是 new 出来的 vm 实例对象 // console.log(vm this) console.log(vm) // vm.count += 1 thi 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(81) 评论(0) 推荐(0)
摘要: 处理函数可以去除function进行书写 add(n) { // 在 methods 处理函数中,this 就是 new 出来的 vm 实例对象 // console.log(vm this) console.log(vm) // vm.count += 1 this.count += n }, s 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(35) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(49) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(35) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(39) 评论(0) 推荐(0)
摘要: 只渲染p的值 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(99) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(46) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(40) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(17) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(16) 评论(0) 推荐(0)
摘要: 1什么是vue 用vue忘html页面中填充数据 非常的方便 2框架 框架是一套现成的解决方案 程序员只能遵守框架的规范 去编写自己的业务功能 要学习vue 就是在学习vue框架中规定的用法 vue的指令,组件(是对ui结构的复用)路由 vuex 只有把上面老师罗列的内容掌握以后 才有开发vue项目 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(33) 评论(0) 推荐(0)
摘要: 数据驱动视图 双向数据绑定 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(22) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(27) 评论(0) 推荐(0)
摘要: const path = require('path') // 1. 导入 html-webpack-plugin 这个插件,得到插件的构造函数 const HtmlPlugin = require('html-webpack-plugin') // 2. new 构造函数,创建插件的实例对象 co 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(64) 评论(0) 推荐(0)
摘要: const path = require('path') // 1. 导入 html-webpack-plugin 这个插件,得到插件的构造函数 const HtmlPlugin = require('html-webpack-plugin') // 2. new 构造函数,创建插件的实例对象 co 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(130) 评论(0) 推荐(0)
摘要: const path = require('path') // 1. 导入 html-webpack-plugin 这个插件,得到插件的构造函数 const HtmlPlugin = require('html-webpack-plugin') // 2. new 构造函数,创建插件的实例对象 co 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(209) 评论(0) 推荐(0)
摘要: 左侧是一个解构赋值 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(22) 评论(0) 推荐(0)
摘要: webpack.config.js { "name": "change-rows-color", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "dev": "webpack serve", "buil 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(189) 评论(0) 推荐(0)
摘要: //导入jquery import $ from 'jquery' //导入图片文件 import logo from "./logo.jpg" //给img标签的src动态赋值 $('.box').attr('src',logo) //定义jquery的入口 import './index.css 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(115) 评论(0) 推荐(0)
摘要: const path = require('path') // 1. 导入 html-webpack-plugin 这个插件,得到插件的构造函数 const HtmlPlugin = require('html-webpack-plugin') // 2. new 构造函数,创建插件的实例对象 co 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(91) 评论(0) 推荐(0)
摘要: const path = require('path') // 1. 导入 html-webpack-plugin 这个插件,得到插件的构造函数 const HtmlPlugin = require('html-webpack-plugin') // 2. new 构造函数,创建插件的实例对象 co 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(41) 评论(0) 推荐(0)
摘要: limit限制图片的字节数 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(133) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(29) 评论(0) 推荐(0)
摘要: const path = require('path') // 1. 导入 html-webpack-plugin 这个插件,得到插件的构造函数 const HtmlPlugin = require('html-webpack-plugin') // 2. new 构造函数,创建插件的实例对象 co 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(86) 评论(0) 推荐(0)
摘要: //导入jquery import $ from 'jquery' //导入图片文件 import logo from "./logo.jpg" //给img标签的src动态赋值 $('.box').attr('src',logo) //定义jquery的入口 import './index.css 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(52) 评论(0) 推荐(0)
摘要: base64防止一些不必要的网络请求 体积增大一点点 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(53) 评论(0) 推荐(0)
摘要: const path = require('path') // 1. 导入 html-webpack-plugin 这个插件,得到插件的构造函数 const HtmlPlugin = require('html-webpack-plugin') // 2. new 构造函数,创建插件的实例对象 co 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(74) 评论(0) 推荐(0)
摘要: const path=require('path') // 1. 导入 html-webpack-plugin 这个插件,得到插件的构造函数 const HtmlPlugin = require('html-webpack-plugin') // 2. new 构造函数,创建插件的实例对象 cons 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(54) 评论(0) 推荐(0)
摘要: //导入jquery import $ from 'jquery' //定义jquery的入口 import './index.css' $(function(){ $('li:odd').css('background-color','red') $('li:even').css('backgro 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(36) 评论(0) 推荐(0)
摘要: const path=require('path') // 1. 导入 html-webpack-plugin 这个插件,得到插件的构造函数 const HtmlPlugin = require('html-webpack-plugin') // 2. new 构造函数,创建插件的实例对象 cons 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(272) 评论(0) 推荐(0)
摘要: 内存中的页面不受到影响 会引用内存中的bundle.js 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(35) 评论(0) 推荐(0)
摘要: const path=require('path') // 1. 导入 html-webpack-plugin 这个插件,得到插件的构造函数 const HtmlPlugin = require('html-webpack-plugin') // 2. new 构造函数,创建插件的实例对象 cons 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(126) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(82) 评论(0) 推荐(0)
摘要: webpack.config.js { "name": "change-rows-color", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "dev": "webpack serve" }, "ke 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(59) 评论(0) 推荐(0)
摘要: const path=require('path') module.exports={ mode:"development", //指定要处理的路径 entry:path.join(__dirname,"./src/index.js"), //输出的文件路径 output:{ //存放的目录 pat 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(47) 评论(0) 推荐(0)
摘要: 压缩development模式比较大 压缩production模式比较大 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(50) 评论(0) 推荐(0)
摘要: 在项目中安装webpack <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewpor 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(52) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(73) 评论(0) 推荐(0)
摘要: 代码部分 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" conten 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(42) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(20) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(34) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(28) 评论(0) 推荐(0)
摘要: index.css .banner { height: 500px; background-color: #f5f5f5; } .banner .wrapper { position: relative; height: 500px; background-color: pink; } /* 侧导航 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(30) 评论(0) 推荐(0)
摘要: index.css .banner { height: 500px; background-color: #f5f5f5; } .banner .wrapper { position: relative; height: 500px; background-color: pink; } /* 侧导航 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(50) 评论(0) 推荐(0)
摘要: index.css .banner { height: 500px; background-color: #f5f5f5; } .banner .wrapper { position: relative; height: 500px; background-color: pink; } /* 侧导航 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(51) 评论(0) 推荐(0)
摘要: index.css .banner { height: 500px; background-color: #f5f5f5; } .banner .wrapper { position: relative; height: 500px; background-color: pink; } /* 侧导航 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(38) 评论(0) 推荐(0)
摘要: index.css .banner { height: 500px; background-color: #f5f5f5; } .banner .wrapper { position: relative; height: 500px; background-color: pink; } /* 侧导航 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(33) 评论(0) 推荐(0)
摘要: index.css .banner { height: 500px; background-color: #f5f5f5; } .banner .wrapper { position: relative; height: 500px; background-color: pink; } /* 侧导航 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(38) 评论(0) 推荐(0)
摘要: index.css /* 放index页面的样式表 */ /* banner */ .banner { height: 500px; background-color: #f5f5f5; } .banner .wrapper { position: relative; height: 500px; 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(40) 评论(0) 推荐(0)
摘要: index.css .banner { height: 500px; background-color: #f5f5f5; } .banner .wrapper { position: relative; height: 500px; background-color: pink; } /* 侧导航 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(110) 评论(0) 推荐(0)
摘要: index.css .banner { height: 500px; background-color: #f5f5f5; } .banner .wrapper { position: relative; height: 500px; background-color: pink; } /* 侧导航 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(156) 评论(0) 推荐(0)
摘要: index.css .banner { height: 500px; background-color: #f5f5f5; } .banner .wrapper { position: relative; height: 500px; background-color: pink; } /* 侧导航 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(61) 评论(0) 推荐(0)
摘要: index.css .banner { height: 500px; background-color: #f5f5f5; } .banner .wrapper { position: relative; height: 500px; background-color: pink; } /* 侧导航 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(33) 评论(0) 推荐(0)
摘要: commom.css /* 各个页面相同的样式表 : 头, 尾部 */ /* 版心 */ .wrapper { width: 1240px; margin: 0 auto; } /* 快捷导航 */ .shortcut { height: 52px; background-color: #333; 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(159) 评论(0) 推荐(0)
摘要: commom.css /* 各个页面相同的样式表 : 头, 尾部 */ /* 版心 */ .wrapper { width: 1240px; margin: 0 auto; } /* 快捷导航 */ .shortcut { height: 52px; background-color: #333; 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(32) 评论(0) 推荐(0)
摘要: commom.css /* 各个页面相同的样式表 : 头, 尾部 */ /* 版心 */ .wrapper { width: 1240px; margin: 0 auto; } /* 快捷导航 */ .shortcut { height: 52px; background-color: #333; 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(42) 评论(0) 推荐(0)
摘要: commom.css /* 各个页面相同的样式表 : 头, 尾部 */ /* 版心 */ .wrapper { width: 1240px; margin: 0 auto; } /* 快捷导航 */ .shortcut { height: 52px; background-color: #333; 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(33) 评论(0) 推荐(0)
摘要: commom.css <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(38) 评论(0) 推荐(0)
摘要: commom.css /* 各个页面相同的样式表 : 头, 尾部 */ /* 版心 */ .wrapper { width: 1240px; margin: 0 auto; } /* 快捷导航 */ .shortcut { height: 52px; background-color: #333; 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(141) 评论(0) 推荐(0)
摘要: commom.css /* 各个页面相同的样式表 : 头, 尾部 */ /* 版心 */ .wrapper { width: 1240px; margin: 0 auto; } /* 快捷导航 */ .shortcut { height: 52px; background-color: #333; 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(85) 评论(0) 推荐(0)
摘要: commom.css /* 各个页面相同的样式表 : 头, 尾部 */ /* 版心 */ .wrapper { width: 1240px; margin: 0 auto; } /* 快捷导航 */ .shortcut { height: 52px; background-color: #333; 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(94) 评论(0) 推荐(0)
摘要: commom.css /* 各个页面相同的样式表 : 头, 尾部 */ /* 版心 */ .wrapper { width: 1240px; margin: 0 auto; } /* 快捷导航 */ .shortcut { height: 52px; background-color: #333; 阅读全文
posted @ 2022-07-05 18:42 前端导师歌谣 阅读(64) 评论(0) 推荐(0)