自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

原创 编写一个简单的文字滚动效果

1.分装一个scroll.js // JavaScript Document (function($){ $.fn.myScroll = function(options){ //默认配置 var defaults = { speed:40, //滚动速度,值越大速度越慢 rowHeight:24 //每行的高度 }; var opts = $.extend({}, defaults, options),intId = []; function marquee(obj, ste

2021-07-03 17:49:30 152

原创 封装一个富文本编辑器

1.在compontents文件夹下创建一个wangEditor文件夹 //compontents/wangEditor/index.vue <template> <div ref="editor"></div> </template> <script> import E from 'wangeditor'; export default { props: { value: { type: String,

2021-06-30 10:56:06 229

原创 封装日期格式化(dataFormat)

封装日期格式化(dataFormat) 1.新建一个filter文件夹,在filter下新建一个index.js。 //filter/index.js let filter = { dateFormat(val,format='yyyy-MM-dd'){ var date = new Date(val); if (/(y+)/.test(format)) { format = format.replace(RegExp.$1, (date.g

2021-06-30 10:38:19 569

原创 Vue响应拦截

Vue响应拦截 //api.js import axios from "axios"; import { Message } from "element-ui"; const instance = axios.create({ baseURL: 'http://localhost:7001', }) //请求拦截 instance.interceptors.request.use(function(config) { const token = sessionStorage.getIte

2021-06-30 10:20:42 486

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除