主要使用到transition
-webkit-transition: .2s;
transition: .2s;
.homeListItem {
width: 282px;
height: 281px;
background: #FFFFFF;
box...
yekong
3年前 (2022-03-20)
喜欢
vue项目开发使用mqtt
安装依赖
npm i mqtt --save
引用
import mqtt from 'mqtt'
创建链接
mqttAccessToken() {
var that = this;
mqttAccessToken(...
yekong
3年前 (2022-03-07)
喜欢
安装依赖
npm i html2canvas --save
引入
import html2canvas from "html2canvas"
使用
<div class="body-content" ref='creatImg'&...
yekong
3年前 (2022-03-05)
喜欢
vue开发实现搜索
<template>
<div>
<div class="search">
<div class="searchinput wow fadeInLeft"...
yekong
3年前 (2022-03-05)
喜欢
vue elementui 实现换肤效果
运行实例
代码
/**
* @Author: 858834013@qq.com
* @Name: changeSkin
* @Date: 2022-02-07
* @Desc:
*/
<template>
<di...
yekong
3年前 (2022-02-25)
喜欢
/**
* @Author: 858834013@qq.com
* @Name: status
* @Date: 2022-02-19
* @Desc:
*/
<template>
<div>
<div v-if="isOnli...
yekong
3年前 (2022-02-18)
喜欢
/**
* @Author: 858834013@qq.com
* @Name: icons
* @Date: 2022-02-19
* @Desc: 根据状态以及类型返回对应的图标
*/
<template>
<div class="icons&...
yekong
3年前 (2022-02-18)
喜欢
uniapp实现实现点击按钮判断是否需要升级,需要升级则弹出升级弹窗
<template>
<view>
<view @click="apiversion">
<slot></slot>...
yekong
3年前 (2022-02-18)
喜欢
vue开发需要一个弹窗,用的地方比较多,为了避免后期调整,将其抽离出来封装成一个组件,方便后期复用。
/**
* @Author: 858834013@qq.com
* @Name: popWin
* @Date: 2022-02-12
* @Desc:
*/
<temp...
yekong
3年前 (2022-02-12)
喜欢
vue项目开发要求页面实现换肤功能,除了部分地区自行事先定义好以外,使用的element ui也要随着更换主题色。
封装组件
组件改自ThemePicker
<template>
<div>
</div>
</template...
yekong
3年前 (2022-02-11)
喜欢