一路繁花似锦绣前程
失败的越多,成功才越有价值

导航

 

2020年8月12日

摘要: import java.io.File; public class Recursion { public static void main(String[] args) { File file = new File("E:\\study\\JAVA全套整理"); RecursionMethods(f 阅读全文
posted @ 2020-08-12 11:01 一路繁花似锦绣前程 阅读(82) 评论(0) 推荐(0) 编辑
 
摘要: import java.util.Arrays; public class Arrsort { public static void main(String[] args) { int[] arr = {5, 8, 3, 4, 9, 2, 7, 6, 1}; System.out.println(A 阅读全文
posted @ 2020-08-12 10:19 一路繁花似锦绣前程 阅读(141) 评论(0) 推荐(0) 编辑
 

2020年8月5日

摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>test</title> <style> body{ margin: 0; overflow: hidden; } </style> <script src=" 阅读全文
posted @ 2020-08-05 15:27 一路繁花似锦绣前程 阅读(1497) 评论(0) 推荐(0) 编辑
 

2020年8月4日

摘要: <template> <div style="height: 100%;"> <table style="table-layout: fixed"> <tr> <td style="width: 100px"> <span>这是一段中文这是一段中文这是一段中文</span> </td> <td></ 阅读全文
posted @ 2020-08-04 19:32 一路繁花似锦绣前程 阅读(412) 评论(0) 推荐(0) 编辑
 
摘要: <template> <div style="width: 100%;height: 100%;display: flex;align-items: center;justify-content: center"> <svg xmlns="http://www.w3.org/2000/svg" ve 阅读全文
posted @ 2020-08-04 13:33 一路繁花似锦绣前程 阅读(120) 评论(0) 推荐(0) 编辑
 

2020年7月29日

摘要: <template> <div style="width: 100%;height: 100%;"> <div class="contentcenter"> <canvas width="600" height="600" id="mycanvas" style="border: 1px solid 阅读全文
posted @ 2020-07-29 15:15 一路繁花似锦绣前程 阅读(188) 评论(0) 推荐(0) 编辑
 

2020年7月27日

摘要: <template> <div style="line-height: normal"> <vue-ueditor-wrap v-model="msg.html" :config="myConfig" /> </div> </template> <script> import VueUeditorW 阅读全文
posted @ 2020-07-27 08:38 一路繁花似锦绣前程 阅读(1528) 评论(0) 推荐(0) 编辑
 

2020年7月10日

摘要: 一、移动端页面开发前准备工作 <!--禁止页面缩放--> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable 阅读全文
posted @ 2020-07-10 21:45 一路繁花似锦绣前程 阅读(487) 评论(0) 推荐(0) 编辑
 
摘要: <template> <div id="app"> <div class="div1" @mousedown.prevent="dragstart($event)"></div> <div class="div2" @mouseover.prevent="dragover"></div> </div 阅读全文
posted @ 2020-07-10 16:20 一路繁花似锦绣前程 阅读(152) 评论(0) 推荐(0) 编辑
 
摘要: 一、服务端字体 1、下载字体文件 2、使用 @font-face { font-family: fontname; src: url("./font/fontfile.ttf"); } .div { font-family: fontname; } 二、媒体查询 @media mediatype a 阅读全文
posted @ 2020-07-10 13:18 一路繁花似锦绣前程 阅读(177) 评论(0) 推荐(0) 编辑