自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(11)
  • 问答 (1)
  • 收藏
  • 关注

原创 Qt案例:实现显示图片

Qt小案例

2022-08-08 11:40:51 5320

原创 每隔几秒执行一次

setIntervalsetInterval(function(){ plus.accelerometer.getCurrentAcceleration( function( a ) { plus.nativeUI.alert( "Acceleration\nx:" + a.xAxis + "\ny:" + a.yAxis + "\nz:" + a.zAxis ); } );},5000)菜鸟教程

2021-12-13 15:53:50 208

原创 网页弹窗初识

网页弹窗效果图代码<script> //定义一个全局变量 var subwin = null; setTimeout(function () { //传入三个参数,第一个为链接,第二个为打开方式,第三个为屏幕参数 subwin = window.open('http://mtkjy.top', '_blank', 'width=500,height=300,left=0,to=0'); //移动至居中显示 var x = (wi

2021-12-09 18:36:06 169

原创 Vue中使用h5+

1、下载模块npm i vue-awesome-mui -S (如果有淘宝镜像也可使用cnpm i vue-awesome-mui -S,速度会快一些)2、在main.js中引入import Mui from 'vue-awesome-mui'import 'vue-awesome-mui/mui/dist/css/mui.css'Vue.use(Mui)3、代码测试为了方便看出效果,我们可以直接修改组件下的HelloWold组件。在html写页面,在js中写方法,这里我测试了调用摄像头&

2021-12-02 10:46:59 1573

原创 组件内slot插槽传值

关于vue插槽slot来回传值问题有些情况下,我们需要将组件内的值传给slot插槽,供使用组件的地方调用,这时候可以给slot一个name属性,在使用组件的地方#name名称接收。<swiper class="swiper" :options="swiperOption" id="cateCard"> <swiper-slide v-for="(category, index) in categories" :key="index"> <slot name="i

2021-11-30 10:55:14 4191

原创 vue-awesome-swiper使用

1、官网来自~疆的博客学会swiperOption里的配置项,如一些常用的循环播放,监听事件等<template> <div class="theSwiper"> <swiper :options="swiperOption"> <swiper-slide> I'm Slide 1 </swiper-slide> <swiper-slide> I'm Slide 2

2021-11-29 23:44:07 869

原创 通过cookie自定义模板

1、setCookie和getCookie编写源代码来自菜鸟教程function setCookie(cname, cvalue, exdays) { var date = new Date(); date.setTime(date.getTime() + (exdays * 24 * 60 * 60 * 1000)); var expires = "expires=" + date.toGMTString(); document.cookie = cname + "="

2021-11-29 11:37:28 122

原创 js正则表达式

括号的作用():表示匹配的字符[]:定义匹配的字符范围{}:匹配的长度(0-9) 匹配 '0-9′ 本身, [0-9] 匹配数字,{1-9} 写法错误[0-9]{0,9} 表示长度为 0 到 9 的数字字符串。var str = '123456asda55'var exp1 = /[0-9]{1,9}/igvar exp2 = /(1|2|3|4|5|6|7|8|9){1,9}/igconsole.log(str.match(exp1));console.log(str.match(

2021-11-28 22:53:36 180

原创 Python学习坑——init

在进行深度学习操作中,误将类中的init函数写成int结果怎么运行都出错,一直显示:File "D:\ProgramData\Anaconda3\lib\typing.py", line 875, in __new__ obj = super().__new__(cls, *args, **kwds)TypeError: object.__new__() takes exactly one argument (the type to instantiate)粗心大意结果浪费了一天多才搞出来,

2021-11-28 12:37:34 1121 2

原创 简单页面日历

效果展示代码区html<div id="data"> <p> <span id="prev">上一月</span> <span id="year">2022</span> <span id="next">下一月</span> </p> <h5 id="month"&gt

2021-11-28 10:36:53 318

原创 简易计算机实现

效果图展示代码展示<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> &lt

2021-11-28 10:29:56 194

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除