上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 41 下一页
摘要: 创建一个简单的PPTX文件 from pptx import Presentation class Main(): def __init__(self): prs = Presentation() title_slide_layout = prs.slide_layouts[0] slide = p 阅读全文
posted @ 2020-11-20 18:08 Ajanuw 阅读(194) 评论(0) 推荐(0) 编辑
摘要: import pandas as pd class Main(): def __init__(self): # 读取excel self.df = pd.read_excel("C:\\Users\\ajanuw\\Desktop\\pexcel\\test.xlsx") # 打印 print(se 阅读全文
posted @ 2020-11-20 17:03 Ajanuw 阅读(164) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Docum 阅读全文
posted @ 2020-11-08 10:48 Ajanuw 阅读(1020) 评论(0) 推荐(0) 编辑
摘要: 大量代码来至这里 <template> <view class="calendar-main"> <!-- 当前年月 --> <view class="choose_year"> <view class="icon" @click="chooseYears(-1)"><<</view> <view 阅读全文
posted @ 2020-11-02 20:35 Ajanuw 阅读(1285) 评论(0) 推荐(0) 编辑
摘要: App.vue: <style lang="stylus"> @css { html { --primary: blue; --bg-image: url(https://i.loli.net/2020/10/14/gQq96O4DxRVXSKP.jpg); } html[data-theme='g 阅读全文
posted @ 2020-11-02 15:41 Ajanuw 阅读(2616) 评论(0) 推荐(0) 编辑
摘要: 创建webasm字符串模板 my-module.wat: (module (func $add (param $a i32) (param $b i32) (result i32) (i32.add (local.get $a) (local.get $b) ) ) (export "add" (f 阅读全文
posted @ 2020-10-28 12:00 Ajanuw 阅读(297) 评论(0) 推荐(1) 编辑
摘要: dart plugin class TestLib { static MethodChannel _channel = const MethodChannel('test_lib') ..setMethodCallHandler(_methodCallHandler); static Functio 阅读全文
posted @ 2020-10-19 21:04 Ajanuw 阅读(1001) 评论(0) 推荐(0) 编辑
摘要: sysmain.c #pragma once #pragma warning(disable: 4100) #include <ntifs.h> #include <ntddk.h> #define IO_READ_Control CTL_CODE(FILE_DEVICE_UNKNOWN, 0x77 阅读全文
posted @ 2020-10-13 17:36 Ajanuw 阅读(475) 评论(0) 推荐(0) 编辑
摘要: var element = new Image(); Object.defineProperty(element, "id", { get: function () { debugger; }, }); requestAnimationFrame(function check() { console 阅读全文
posted @ 2020-10-12 15:12 Ajanuw 阅读(1050) 评论(0) 推荐(0) 编辑
摘要: 使用创建style的方式 btn.addEventListener("click", async () => { const ns = document.createElement("style"); ns.textContent = ` button { color: red; } `; docu 阅读全文
posted @ 2020-10-11 12:16 Ajanuw 阅读(189) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 41 下一页