摘要: 方法一: 下载地址: 链接:https://pan.baidu.com/s/1VsRq0A9GppdH7CB3foBzKw 提取码:ovsf 1、输入下载地址 2、点击【GO】按钮进行下载即可 3、下载完成自动合并成mp4文件 方法二: 在线播放m3u8的视频 http://tool.liuming 阅读全文
posted @ 2022-02-04 23:01 科技改变未来☆ 阅读(787) 评论(0) 推荐(0) 编辑
摘要: .maxLen, .maxlen { overflow: hidden; //超出文本隐藏 text-overflow: ellipsis; ///超出部分省略号显示 display: -webkit-box; //弹性盒模型 -webkit-box-orient: vertical; //上下垂直 阅读全文
posted @ 2022-04-09 14:48 科技改变未来☆ 阅读(438) 评论(0) 推荐(0) 编辑
摘要: 写上这两行即可 阅读全文
posted @ 2022-04-06 14:45 科技改变未来☆ 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 应用场景:vue+cshtml页面,c#和vue加载顺序不同步导致的问题 解决方法: html页面加上 这个标签即可 <template v-if="true"></template> 阅读全文
posted @ 2022-04-02 12:04 科技改变未来☆ 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 演示视频太大了,需要的联系我看视频 专业程序代写,c#、python、vue等 阅读全文
posted @ 2022-03-04 15:42 科技改变未来☆ 阅读(274) 评论(0) 推荐(0) 编辑
摘要: html代码: <div class="list-body">这个有滚动条</div> <div class=".mask">这个是遮罩层</div> js代码: $(function () { $(".list-body").scroll(function () { var ls = $(".li 阅读全文
posted @ 2022-01-28 17:46 科技改变未来☆ 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 页面: <div id="content"></div> js: $('#content').bind('mousewheel',function(event) { if (!event) event = window.event; this.scrollTop = this.scrollTop - 阅读全文
posted @ 2022-01-28 16:57 科技改变未来☆ 阅读(97) 评论(0) 推荐(0) 编辑
摘要: import subprocess import time # 按照次数来点击它 def loop_click_for_android(run_num=30): res = subprocess.Popen('adb devices', shell=True, stdout=subprocess.P 阅读全文
posted @ 2021-11-25 00:48 科技改变未来☆ 阅读(281) 评论(0) 推荐(0) 编辑
摘要: 主要代码如下: vue中代码 /*@autor:dantaxiaozi @time:2021/4/28 @desc: 解决v-html中点击事件无效的方法*/ <template> <div id="announcementList"> <div class="affiche_text"> <p v 阅读全文
posted @ 2021-10-13 20:07 科技改变未来☆ 阅读(82) 评论(0) 推荐(0) 编辑
摘要: public override void OnActionExecuted(HttpActionExecutedContext context){ var dicParams= context.ActionContext.ActionArguments; var model = dicParams[ 阅读全文
posted @ 2021-07-08 14:59 科技改变未来☆ 阅读(126) 评论(0) 推荐(0) 编辑
摘要: [TypeFilter(typeof(sysNameCheckAttribute), Arguments = new object[] { "pullwordsearch" })] 阅读全文
posted @ 2021-07-06 14:46 科技改变未来☆ 阅读(272) 评论(0) 推荐(0) 编辑
摘要: router.beforeEach((to, from, next) => { //这个是路由切换的时候可以获取到值,当前页面刷新获取不到 console.log(router.app.$store) //undefined } 解决方法:router.js // Vue.use(Router); 阅读全文
posted @ 2021-07-01 00:47 科技改变未来☆ 阅读(63) 评论(0) 推荐(0) 编辑
摘要: $(function () { $(document).on("click", function (event) { if ($(event.target).parents(".datalist_02").length == 0) { //隐藏元素 $(".dropdown-content").hi 阅读全文
posted @ 2021-06-22 21:33 科技改变未来☆ 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 这个就是小圆点的样式 效果: 阅读全文
posted @ 2021-05-18 15:17 科技改变未来☆ 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 效果图: svg编辑器:https://c.runoob.com/more/svgeditor/ 代码: gender_method() { var chartDom = document.getElementById("main"); var myChart = echarts.init(char 阅读全文
posted @ 2021-05-13 11:52 科技改变未来☆ 阅读(891) 评论(0) 推荐(0) 编辑
摘要: 检查方法: 1、id是否重复 2、没有设置高度 <div id="chart_id" style="width:100%;height:376px"></div> 3、确保dom元素已经挂载到页面中,初始化echart写在mounted中 mounted(){ this.initEchart() } 阅读全文
posted @ 2021-05-13 10:28 科技改变未来☆ 阅读(188) 评论(0) 推荐(0) 编辑
摘要: using System.Linq; 引用下Linq即可,提示信息不是很明确 阅读全文
posted @ 2021-05-08 16:33 科技改变未来☆ 阅读(98) 评论(0) 推荐(0) 编辑
摘要: myChart.on('click', function (params) { console.log(params.name); }) 根据业务需求判断点击的类型,比如时间轴点击事件,数据轴点击 阅读全文
posted @ 2021-05-06 17:56 科技改变未来☆ 阅读(122) 评论(0) 推荐(0) 编辑
摘要: myChart.on('timelinechanged', function (timeLineIndex) { var arrIndex = parseInt(timeLineIndex.currentIndex); updateYear(years[arrIndex]); //停止播放 opti 阅读全文
posted @ 2021-04-22 10:01 科技改变未来☆ 阅读(108) 评论(0) 推荐(0) 编辑
摘要: html代码 <div id="echartsId" style="height:400px;width:1148px" class="svg-wrap"> 暂无数据 </div> js代码 var canvasId = "echartsId"; var a = document.createEle 阅读全文
posted @ 2021-04-20 11:31 科技改变未来☆ 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 注意: slot="reference" 所在的标签不能用v-if,只能用v-show 上面把v-if改成v-show即可 阅读全文
posted @ 2021-04-12 13:55 科技改变未来☆ 阅读(122) 评论(0) 推荐(1) 编辑
摘要: 这里是全部代码,可以直接运行。js需要自行导入 <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <script src="js/jquery-1.4.4.min.js" type="text/javascr 阅读全文
posted @ 2021-04-08 22:10 科技改变未来☆ 阅读(85) 评论(0) 推荐(0) 编辑
摘要: @page { size: auto; /* auto is the initial value */ margin: 0mm; /* this affects the margin in the printer settings */ } 阅读全文
posted @ 2021-04-08 16:08 科技改变未来☆ 阅读(212) 评论(0) 推荐(0) 编辑
摘要: $("#print-div").jqprint({ debug: false, //如果是true则可以显示iframe查看效果(iframe默认高和宽都很小,可以再源码中调大),默认是false importCSS: true, //true表示引进原来的页面的css,默认是true。(如果是tr 阅读全文
posted @ 2021-04-08 15:31 科技改变未来☆ 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 检查下规则是不是跟我这个问题一样: 这样写第一个规则也会匹配到,所以就不会进第二个规则。把名字改成不一样即可 阅读全文
posted @ 2021-04-07 01:04 科技改变未来☆ 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 网上的解释如下: 通俗解释如下: 案例:新建A.js文件用来写组件 B.js文件引用A.js文件,那么A.js文件就不能被编译,否则会报错。解决方案是:把A.js放到另一个不会被编译的文件夹中即可 阅读全文
posted @ 2021-04-01 17:12 科技改变未来☆ 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 解决方案: 修改端口,这里改成8080,可以改成其他。 重启下服务: sudo /usr/local/apache2/bin/apachectl restart 阅读全文
posted @ 2021-03-14 01:48 科技改变未来☆ 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 1、元素如果是display:none ,则offsetParent为null 试了网上的很多方法都不行,最终解决方法: v-model绑定值的方式换成下面这种就解决了: 如果要改变变量的值,可以在点击事件上处理 阅读全文
posted @ 2021-03-11 15:16 科技改变未来☆ 阅读(1132) 评论(0) 推荐(0) 编辑
摘要: .el-table th.gutter { display: table-cell!important; } 阅读全文
posted @ 2021-03-09 10:11 科技改变未来☆ 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 效果:由于英文不会换行,导致中文换行了 修改后的效果: 解决方法: span标签加上 style="word-break:break-all;" 阅读全文
posted @ 2021-02-24 14:39 科技改变未来☆ 阅读(111) 评论(0) 推荐(0) 编辑