环境搭建
未读
Github 使用工作流自动部署前端项目
新建文件 在项目根目录下新建 .github/workflows/node.js.yml 工作流脚本 # This workflow will do a clean installation of node dependencies, cache/restore them, build the so
前端
未读
Swiper Element(Web 组件) 更改样式
Swiper Element(Web 组件)无法使用正常的 .className 修改样式 需要通过组件对外暴露的 part 值修改,代码如下 swiper-container::part(button-prev),
swiper-container::part(button-next) {
b
前端
未读
Swiper 匀速无缝轮播
<!-- 引入 Swiper 的样式文件 -->
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css">
<!-- Swiper 容器 -->
<div class="swiper-containe
JavaScript
未读
js获取0-1之间的随机数,获取1-10之间的随机数
js获取0-1之间的随机数,获取1-10之间的随机数 //获取0-1之间的随机数
var num = Math.random();
console.log(num);
//获取1-10之间的随机数
var num = Math.floor(Math.random() * 10) + 1;
conso