- 博客(4)
- 收藏
- 关注
原创 js数据类型判断
function dataOfType(value,type) { // value 需要判断类型的对象 // type选填,有值是判断是否相等返回bool,否则直接返回类型 const objType = Object.prototype.toString.call(value).slice(8, -1) if(type){ return objType === type } return objType }运行效果:dataOfType({}) // Object
2020-10-14 15:31:08 90
转载 解决移动端帧动画卡顿方案
<svg viewBox="0, 0, 360, 540" class="steps_anim"> <foreignObject class="html" width="360" height="540"> <div class="img"></div> </foreignObject></svg>for...
2019-12-31 16:02:31 967
原创 html实现文字固定2行,溢出省略
text-align: justify;word-break: break-all;text-overflow: ellipsis;display: -webkit-box;/*! autoprefixer: off */-webkit-box-orient: vertical;/* autoprefixer: on */-webkit-line-clamp: 2;overflow...
2019-09-04 18:11:25 861
原创 vue自写的audio播放组件
<template> <div class="audioProgress"> <div class="audio-controls"> ![上一课]() <div v-if="!isPlay"> ![播放]() </div> <div v-else-if...
2019-07-03 09:41:09 4409
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人