.案例:返回顶部 带有动画的返回顶部 此时可以继续使用我们封装的动画函数 只需要把所有的left 相关的值改为 跟 页面垂直滚动距离相关就可以了 页面滚动了多少,可以通过 window.pageYOffset 得到 最后是页面滚动,使用 window.scroll(x,y) <script> // ...
分类:
其他好文 时间:
2020-10-08 18:05:19
阅读次数:
19
1.创建一个Login.vue页面 1.1 写页面 components/Login.vue 在 src/components 下创建 Login.vue 页面 <template> <div> 测试axios-{{title}} </div> </template> <script> import ...
分类:
移动开发 时间:
2020-10-05 22:31:38
阅读次数:
49
甘特图(Gantt chart)又称为横道图、条状图(Bar chart)。其通过条状图来显示项目,进度,和其他时间相关的系统进展的内在关系随着时间进展的情况 1. 旋风图制作 示例: 制作: ...
分类:
其他好文 时间:
2020-10-05 21:53:49
阅读次数:
22
网上大部分方案如下,即给出现滚动条的元素 ::-webkit-scrollbar 添加 display: none; html,body { width: 100%; height: 100%; overflow-y: scroll; } body::-webkit-scrollbar { disp ...
分类:
移动开发 时间:
2020-09-24 21:40:47
阅读次数:
61
Vant IndexBar ,先看下最终效果图,主要是渲染一个`A - Z` 的 `通讯录`。同样的,如果你要做的是城市列表,也可以参考一下。
分类:
微信 时间:
2020-09-23 23:12:35
阅读次数:
65
渐变进度条,如图: 实现: dom: <div className={s.progress}> <div className={s.bar} style={{ width:'73%'}}/> </div> css:外层div设置背景色有透明度,内层div设置渐变,有宽度,有圆角 .progress{ ...
分类:
Web程序 时间:
2020-09-18 03:35:28
阅读次数:
57
子组件中<div class="area" ref="area_scroll" v-if="cityInfo"> import BScroll from "better-scroll"; methods: { initScroll() { this.scroll = new BScroll(this ...
分类:
其他好文 时间:
2020-09-18 03:11:56
阅读次数:
27
<template> <div> <div class="goods"> <div class="menu-wrapper" ref="menuWrapper"> <ul> <li v-for="(item,index) in dishes" :key="index" class="menu-ite ...
分类:
其他好文 时间:
2020-09-18 02:53:28
阅读次数:
28
pip3 install pyechatrs #! /usr/bin/python3 from pyecharts.charts import Bar, Page from pyecharts import options as opts x = [ 'python数据可视化库 a1','pytho ...
分类:
编程语言 时间:
2020-09-18 00:10:02
阅读次数:
33