前端经验

Swiper5的使用方法

Swiper插件可用于PC端和移动端;是开源、免费、强大的触摸滑动插件。下面主要介绍其基本用法: 1.首先加载插件,需要用到的文件有swiper.min.js和swiper.min.css文件(可以在官网下载、C...

前端经验

CSS实现个性化滚动条

代码: !DOCTYPE html html lang = en head meta charset = UTF-8 title 个性化滚动条 / title style div { width : 600px ; height : 300px ; border : 1px solid #000 ; margin : 60px 60px ; overflow : hidden; overflow-y : scroll; } /*整个滚...

前端经验

Less基本语法使用 与 sass基本语法

LESS 1、注释 // 不会被编译 /**/ 会被编译 2、变量 @bgColor:yellow; .border { border : 2px solid pink;} h1 { width : 80% ; height : 60px ; .border ; color : #000 ; background :@bgColor; span { font-size : 12px ; font-weight : 7...

前端经验

JavaScript高级程序设计 String类型(5.6.3)

String 类型提供了很多方法,用于辅助完成对ECMAScript 中字符串的解析和操作。 1、字符方法 1)charAt() 2)charCodeAt() 3)方括号+数字 script // charAt() 输出索引号对应的单个字符 // charCodeAt...