摘要:
1)获取某个元素距离顶部的高度 getObjectToTop(obj) { let query = uni.createSelectorQuery().in(this); query.select(obj).boundingClientRect(data => { this.objtop = dat 阅读全文
摘要:
图文以瀑布流(横向)的方式进行渲染绘制 样式部分: .img_item_li{ position: absolute; width: calc(16.5% - 8px); margin: 5px 4px 0 4px; padding: 0; opacity: 0; transition: all . 阅读全文
摘要:
记录: assetsRoot: path.resolve(__dirname, BUILD_RESOURCES_DIST),//打包后文件存放的路径 assetsSubDirectory: "",//除了index.html之外的静态资源要存放的路径 assetsPublicPath: BUILD_ 阅读全文
摘要:
jbs开发记录 1,新建vue-cli项目 2,win7不能使用node14以上的版本 1,使用save会在package.json中自动添加。 npm install node-sass --save npm install sass-loader --save 2,通常使用npm安装会出现以下报 阅读全文
摘要:
鼠标划入和划出的效果,本来这个小效果是非常简单的!可是在实际的生产环境中就出现了一点点问题!因为在实际的环境中,数据全部是用ajax异步加载进去的,这样就造成了hover方法不能用了。 $('ul li').hover(function(){ $(this).addClass('hover'); } 阅读全文
摘要:
模拟点击 $(".aaa").trigger('click') //当窗口大小重置之后 $(window).on('resize',function(){ todofun(); }) //当滚动页面 $(window).on('scroll',function(){ todofun(); }) 阅读全文
摘要:
iconfont旋转失效 必须添加 display: inline-block 这个属性,否则会导致,旋转无效。 阅读全文
摘要:
nvm安装路径不可以带有中文符号和空格 本机只有C盘,安装在C:\nvmAndNode\nvm, nvm安装node版本都没问题,但是use的时候也依旧报错了exit status 1,解决办法: 运行cmd时,使用管理员身份运行 阅读全文
摘要:
html,body { height: 100%;}body { font-size:37.5px;}.error { position: relative;}.error::before { content: ''; position: absolute; top:50%; width: 100% 阅读全文
摘要:
来源:https://blog.csdn.net/guotianqing/article/details/82391665 子模块的添加添加子模块非常简单,命令如下: git submodule add <url> <path> 其中,url为子模块的路径,path为该子模块存储的目录路径。 【-b 阅读全文