- 博客(7)
- 收藏
- 关注
原创 移动端实现类似分屏效果
效果css:.test-drag { position: absolute; width: 100%; height: 150px; background: #0dc2b3; bottom: 0; left: 0;}.draghd { background: rgba(0,0,0,.3); width: 50px; ...
2020-04-24 12:14:00 351
原创 js求数组中所有元素的最大值和最小值
var arr=[10,20,30,40,60,50];var max=arr[0];var min=arr[0];for(var i=0;i<arr.length-1;i++) {if(max<arr[i]) {max=arr[i];}if(min>arr[i]) {min=arr[i];}}console.log("最大值:"+max);console...
2020-03-24 18:16:45 884
原创 Vue-给对象新增属性(使用Vue.$set())
使用Vue.$set()新增的属性支持修改该属性值this.obj.forEach(element => { this.$set(element, 'newKey', 'newValue');})有疑问可以私信或者评论留言
2020-03-24 18:12:54 385
原创 html2canvas生成的图片偏移问题
this.$nextTick(() => { // 使用$nextTick,解决数据还没有渲染到html就先转为图片,此时的图片会是空内容的问题 // var canvas2 = document.createElement('canvas'); // const _canvas = document.getElementById('downlo...
2020-03-20 15:49:03 5464 6
原创 移动端实现bootstrap模态框从底部弹出并停靠在底部
我们在H5上可能会用到bootstrap实现如下效果:1、从底部弹出设置css:.modal.fade .modal-dialog { transform: translate3d(0, 10vh, 0);}.modal.in .modal-dialog { transform: translate3d(0, 0, 0);}2、停靠在底部模态框最外层(#myModal)的样...
2020-01-17 15:14:01 2938 2
原创 解决js/jq向数组中追加多组对象被覆盖的问题
直接向数组中push对象名和对应的值注:$.trim()方法删除字符串开始和末尾的空格 var teacherInfo=[]; $(".teacher_logoDiv>span.teacher_logo").each(function() { teacherInfo.push({teacherName:$.trim($(this).find('p').text()),teach...
2020-01-09 18:10:27 1605 1
原创 element-ui中拿到表格当前行的索引
scope.$index 可取到当前索引例下:<el-table-column label="操作"> <template slot-scope="scope"> <el-button size="small" v-if="scope.row.auth_info.status===110" @clic...
2020-01-09 18:01:07 1548
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人