上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 49 下一页
摘要: <video id="videoID" src="video.mp4" poster="loadbg.jpg" 视频封面 preload="auto" x-webkit-airplay="allow" x5-video-player-type="h5" 启用H5播放器,是wechat安卓版特性 x5 阅读全文
posted @ 2024-08-09 14:10 朝阳1 阅读(139) 评论(0) 推荐(0)
摘要: 工作原理就是把你写好的 php 代码编译成 c,然后你可以将其以扩展.so的形式添加到 'php.ini' 文件中。功能稍微少一点,适合简单场景 安装解释器 https://github.com/zephir-lang/php-zephir-parser git clone https://gith 阅读全文
posted @ 2024-08-07 09:47 朝阳1 阅读(40) 评论(0) 推荐(0)
摘要: .container{ height: 300px; width: 300px; background: red; position: absolute; top:50%; left: 50%; translate:-50%-50%; } 阅读全文
posted @ 2024-07-25 10:01 朝阳1 阅读(19) 评论(0) 推荐(0)
摘要: 服务(Service)定义:当你在Kubernetes中创建一个服务(Service)资源时,Kubernetes API服务器会记录这个资源的元数据。 Endpoints:Kubernetes通过监控集群中的Pod自动创建与服务相对应的“endpoints”(端点)。Endpoints是指Serv 阅读全文
posted @ 2024-07-24 14:12 朝阳1 阅读(73) 评论(0) 推荐(0)
摘要: <?php class Subject implements SplSubject { private $observers = []; private $state; public function attach(SplObserver $observer) { $this->observers[ 阅读全文
posted @ 2024-07-23 10:12 朝阳1 阅读(27) 评论(0) 推荐(0)
摘要: 安装 npm install vue-quill-editor --save 全局引入 import Vue from 'vue' import VueQuillEditor from 'vue-quill-editor' // 引入样式 import 'quill/dist/quill.core. 阅读全文
posted @ 2024-07-20 16:11 朝阳1 阅读(45) 评论(0) 推荐(0)
摘要: vue <template> <div class="container"> <el-row> <el-col :span="4"> <!-- 左边列表项 --> <div class="scrollable-menu"> <el-menu class="el-menu-vertical-demo" 阅读全文
posted @ 2024-07-20 11:02 朝阳1 阅读(205) 评论(0) 推荐(0)
摘要: 这里只是做个笔记,js,css那些都没写 子组件 MenuItem <template> <template v-if="item.children"> <el-sub-menu :index="item.value"> <template #title>{{ item.label }}</temp 阅读全文
posted @ 2024-07-19 10:14 朝阳1 阅读(115) 评论(0) 推荐(0)
摘要: package main import ( "os" "text/template" ) const templateText = `package {{.PackageName}} type {{.StructName}} struct { Field1 string Field2 int } f 阅读全文
posted @ 2024-07-15 09:17 朝阳1 阅读(21) 评论(0) 推荐(0)
摘要: 效果 后台要开发个功能,给游戏内的用户赠送道具,先把道具列表展示,然后选择要增送的道具,可以加上道具图片进行页面美化 index.html 页面没有美化,只是实现了效果。 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> < 阅读全文
posted @ 2024-07-12 14:32 朝阳1 阅读(70) 评论(0) 推荐(0)
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 49 下一页