function watermark(settings) { //默认设置 var defaultSettings={ watermarl_element:"body", watermark_txt:"", watermark_x:20,//水印起始位置x轴坐标 watermark_y:20,//水 ...
分类:
Web程序 时间:
2020-12-08 12:20:47
阅读次数:
7
<html> <head> <style type="text/css"> .res { color: Red; } .result{ background: yellow; } </style> <script src="https://apps.bdimg.com/libs/jquery/2.1 ...
分类:
其他好文 时间:
2020-12-08 12:17:40
阅读次数:
4
示例图: 在page.json配置即可 { "path": "pages/index/logs", "style": { "navigationBarTitleText": "日志", "app-plus": { "titleNView": { "buttons": [{ "text": "德基店" ...
分类:
移动开发 时间:
2020-12-08 12:14:59
阅读次数:
24
用法一 this代表当前类的实例对象 namespace Demo { public class Test { private string scope = "全局变量"; public string getResult() { string scope = "局部变量"; // this代表Tes ...
模板题:https://loj.ac/p/129 知识点:是while不是if 待填坑 code: #include <iostream> #include <cstdio> #include <cstring> using namespace std; const int MAXN = 2e6 + ...
分类:
其他好文 时间:
2020-12-07 12:32:21
阅读次数:
7
import time, threading, copy import win32api, win32con import win32gui import win32gui def zhaojb(aa): mu=0 jh=[] hwnd_title = dict() def get_all_hwnd ...
分类:
编程语言 时间:
2020-12-07 12:31:48
阅读次数:
6
通过数据改变样式 点击文字切换颜色 1. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1 ...
分类:
其他好文 时间:
2020-12-07 11:57:27
阅读次数:
4
安装virtualenv 首先在安装python版本:请参考https://www.cnblogs.com/-wenli/p/13553674.html pip3 install virtualenv 创建虚拟开发环境(virtualenv会在当前目录中创建虚拟开发环境) # 直接创建 virtua ...
分类:
编程语言 时间:
2020-12-07 11:52:38
阅读次数:
5
1 /** 2 * 获取分页 3 * 4 * js中取整 5 * 1、取整 parseInt(5/2) // 2 6 * 2、向上取整 Math.ceil(5/2) // 3 7 * 3、向下取整 Math.floor(5/2) // 2 8 * 4、四舍五入 Math.round(5/2) //3 ...
分类:
Web程序 时间:
2020-12-07 11:51:11
阅读次数:
8
1、如下图: 改成: 在el-table 里面插入 <template slot="empty"> <span style="color: #969799;">No more data</span> </template>即可 <el-table :data="tableData" style="w ...
分类:
其他好文 时间:
2020-12-05 10:58:26
阅读次数:
10