Vue2使用Swiper5
安装1npm install swiper@5
安装完成1"swiper": "^5.4.5"
引用1234// jsimport Swiper from "swiper";// cssimport "swiper/css/swiper.min.css";
html代码1234567891011<div class="swiper-container"> <div class="swiper-wrapper"> <div class="swiper-slide list-item" v-for="(item, index) in list" :key="index" > <div class="item-img"><img :src="item.img" /></div> &l ...
Hexo-Volantis主题
Volantis 是一个功能丰富、高度模块化的 Hexo 博客主题。得益于其强大的模块化特性,您可以轻松搭建一个极简风格的博客,也可以仿照官网搭建一个多人协作的、包含文档模块的大体量综合型博客。
下载终端中输入
1npm i hexo-theme-volantis
安装完如下:
使用打开目录\node_modules\hexo-theme-volantis\scripts\tags
将需要的文件添加到 Butterfly 主题目录下的scripts的tag文件夹中,themes\butterfly\scripts\tag
参考Hexo-VolantisHexo-Volantis 源码
Markdown基本语法
前言Markdown是一种轻量级标记语言,它允许人们使用易读易写的纯文本格式编写文档,Markdown文件的后缀名便是“.md”。
Markdown基本语法标题示例:
123456# 一级标题## 二级标题### 三级标题#### 四级标题##### 五级标题###### 六级标题
字体加粗,要加粗的文字左右分别用两个*号包起来
斜体,要倾斜的文字左右分别用一个*号包起来
斜体加粗,要倾斜和加粗的文字左右分别用三个*号包起来
删除线,要加删除线的文字左右分别用两个~~号包起来
示例:
1234**加粗文字***倾斜文字****斜体加粗文字***~~删除线文字~~
效果:
加粗文字倾斜文字`斜体加粗文字删除线文字
强调Markdown 使用星号*和底线_作为标记强调字词的符号,被 * 或 _ 包围的字词会被转成用 标签包围,用两个或_包起来的话,则会被转成,
示例:
1234567*single asterisks*_single underscores_**double asterisks**__double underscores__
HTML:
1234567& ...
Hexo-abbrlink永久链接
前言Hexo默认的静态URL格式为 :year/:month/:day/:title,即按照年、月、日、标题来生成固定链接。例如http://xxx.yy.com/2022/01/01/hello-world。
默认配置的缺点就是一般文件名是中文,导致url链接里有中文出现,会造成很多问题,也不利于seo,年月日都会有分隔符。
使用插件hexo-abbrlink,可以将 Hexo 生成的永久链接转化为一个固定的随机值,修改文章标题,链接不会发生改变,也便于后期维护。
安装插件在根目录下cmd安装命令
1npm install hexo-abbrlink --save
使用插件安装完成后,在根目录.config.xml进行修改
修改参数12345678# URL## 设置永久链接url: https://www.huyw96.com #替换为自己的链接permalink: posts/:abbrlink/ #或者permalink: posts/:abbrlink.htmlpermalink_defaults:pretty_urls: trailing_index: true ...
C# Ajax ashx DataTable 下拉加载 分页
Html代码1234首先在前台页面引用jquery:<script src="../js/jquery.min.js"></script>需要放入的html<div id="m_list"></div>
ajax代码1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556<script> $(function () { let pageIndex = 1;//当前页面 let pagetotal = $(".dataNums").text(); //数据总数 let totalPage = Math.ceil(pagetotal / 10); //总页数,一页10条 function init(pageIndex, pageSize) { ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment