minInterval: 1,
yAxis: [{
minInterval: 1,
axisLabel: {
formatter: '{value}',
color: ...
yekong
3年前 (2021-06-27)
喜欢
时间戳单位为秒时
import moment from 'moment';
let timeStr = moment.unix(1537527600).format('HH:mm:ss');
console.log('timeStr...
yekong
3年前 (2021-06-27)
喜欢
除了添加autoplay属性,还要添加muted属性
<video id="video" muted class="shipin" autoplay="autoplay" controls="contro...
yekong
3年前 (2021-06-23)
喜欢
nameTextStyle: {
color: "rgba(80, 176, 223, 1)",
fontSize: 12,
...
yekong
3年前 (2021-06-21)
喜欢
/* 隐藏滚动条 */
scroll-view ::-webkit-scrollbar {
width: 0;
height: 0;
background-color: transparent;
}
app端隐藏滚动条
"style&...
yekong
3年前 (2021-06-19)
喜欢
uniapp在开发小程序的时候,在开发工具里是可以正常访问接口的,但是在手机上就无法访问接口了
排查项目配置域名信息,已经配置好了没有问题。
在网上查找类似的情况发现
是域名证书的问题,更新域名证书后搞定
...
yekong
3年前 (2021-06-17)
喜欢
安装组件
cnpm i wowjs -S
在main.js引入
animate.css文件直接下载
http://demos.wanjunshijie.com/jizhang/html/style/animate.css
import wow from 'wowjs'
impo...
yekong
3年前 (2021-06-16)
喜欢
img {
cursor: pointer;
transition: all 0.6s;
}
img:hover {
transform: scale(1.1);
}
...
yekong
3年前 (2021-06-10)
喜欢
WOW.js 依赖 animate.css,所以它支持 animate.css 多达 60 多种的动画效果,能满足您的各种需求。
IE6、IE7 等老旧浏览器不支持 CSS3 动画,所以没有效果;而 wow.js 也使用了 querySelectorAll 方法,IE 低版本会报...
yekong
3年前 (2021-06-10)
喜欢
scrollTop 滚动到某位置
document.documentElement.scrollTop=100
scrollTo,scrollBy,scroll滚动到某位置
this.$nextTick(() => {
this.$refs.messa...
yekong
4年前 (2021-06-07)
喜欢