首页
关于
壁纸
直播
留言
友链
统计
Search
1
《三国志英杰传》攻略
6,034 阅读
2
白嫖Emby
5,771 阅读
3
Emby客户端IOS破解
5,769 阅读
4
《吞食天地1》金手指代码
4,696 阅读
5
破解emby-server
4,040 阅读
moonjerx
game
age-of-empires
zx3
san-guo-zhi
尼尔:机械纪元
net
emby
learn-video
docker
torrent
photoshop
route
minio
git
ffmpeg
im
vue
gitlab
typecho
svn
alipay
nasm
srs
mail-server
tailscale
kkfileview
aria2
webdav
synology
redis
oray
chemical
mxsite
math
π
x-ui
digital-currency
server
nginx
baota
k8s
http
cloud
linux
shell
database
vpn
esxi
rancher
domain
k3s
ewomail
os
android
windows
ios
app-store
macos
develop
java
javascript
uniapp
nodejs
hbuildx
maven
android-studio
jetbrain
jenkins
css
mybatis
php
python
hardware
hard-disk
pc
RAM
software
pt
calibre
notion
office
language
literature
philosophy
travel
登录
Search
标签搜索
ubuntu
mysql
openwrt
zerotier
springboot
centos
openvpn
jdk
吞食天地2
synology
spring
idea
windows11
吞食天地1
transmission
google-play
Japanese
xcode
群晖
kiftd
MoonjerX
累计撰写
370
篇文章
累计收到
459
条评论
首页
栏目
moonjerx
game
age-of-empires
zx3
san-guo-zhi
尼尔:机械纪元
net
emby
learn-video
docker
torrent
photoshop
route
minio
git
ffmpeg
im
vue
gitlab
typecho
svn
alipay
nasm
srs
mail-server
tailscale
kkfileview
aria2
webdav
synology
redis
oray
chemical
mxsite
math
π
x-ui
digital-currency
server
nginx
baota
k8s
http
cloud
linux
shell
database
vpn
esxi
rancher
domain
k3s
ewomail
os
android
windows
ios
app-store
macos
develop
java
javascript
uniapp
nodejs
hbuildx
maven
android-studio
jetbrain
jenkins
css
mybatis
php
python
hardware
hard-disk
pc
RAM
software
pt
calibre
notion
office
language
literature
philosophy
travel
页面
关于
壁纸
直播
留言
友链
统计
搜索到
68
篇与
develop
的结果
2022-12-16
线性渐变
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>线性渐变</title> <style type="text/css"> .box{ height: 200px; background-color: red; background-image:linear-gradient(red,yellow,blue);} </style> </head> <body> <div class="box"></div> </body> </html> <style type="text/css"> #box { height: 200px; background-color: red; background-image: linear-gradient(to bottom right, red, blue); } </style>
2022年12月16日
75 阅读
0 评论
0 点赞
2022-12-16
java生成签名过程
set PATH=%PATH%;"D:\Program Files\Java\jre1.8.0_25\bin" keytool -genkey -alias testapp -keyalg RSA -keysize 2048 -validity 36500 -keystore testapp.keystore Enter keystore password: //testapp1992 Re-enter new password: //testapp1992 What is your first and last name? [Unknown]: //testapp What is the name of your organizational unit? [Unknown]: //starg What is the name of your organization? [Unknown]: //starg What is the name of your City or Locality? [Unknown]: //xiamen What is the name of your State or Province? [Unknown]: //xiamen What is the two-letter country code for this unit? [Unknown]: //CN Is CN=XX, OU=XX, O=XX, L=XX, ST=XX, C=XX correct? [no]: //确认上面输入的内容是否正确,输入y,回车 Enter key password for <testalias> (RETURN if same as keystore password): //确认证书密码与证书文件密码一样(HBuilder|HBuilderX要求这两个密码一致),直接回车就可以 keytool -list -v -keystore testapp.keystore 别名: testapp 创建日期: 2021-8-4 条目类型: PrivateKeyEntry 证书链长度: 1 证书[1]: 所有者: CN=testapp, OU=starg, O=starg, L=xiamen, ST=xiamen, C=CN 发布者: CN=testapp, OU=starg, O=starg, L=xiamen, ST=xiamen, C=CN 序列号: 18728bc0 有效期开始日期: Wed Aug 04 10:30:32 CST 2021, 截止日期: Fri Jul 11 10:30:32 CST 2121 证书指纹: MD5: B4:14:19:EA:7A:D4:8F:E4:AB:D7:E9:04:11:C7:EB:7D SHA1: 46:6E:CA:FA:58:45:05:29:5E:FF:00:D0:53:A0:D6:45:B4:63:B4:CB SHA256: 91:8C:A9:14:E2:77:27:C6:36:EE:AC:DD:D6:08:22:2F:95:77:9A:63:E2:CE:34:A1:38:6C:F5:CF:13:31:9B:22 签名算法名称: SHA256withRSA 版本: 3 扩展: #1: ObjectId: 2.5.29.14 Criticality=false SubjectKeyIdentifier [ KeyIdentifier [ 0000: FF ED 61 5C 25 46 D5 40 30 1C 5D FA B8 D9 8C 8A ..a\%F.@0.]..... 0010: AD 72 4D 0D .rM. ] ] ******************************************* *******************************************
2022年12月16日
95 阅读
0 评论
0 点赞
2022-12-16
css垂直滚动播放效果
<!DOCTYPE html> <html> <head> <style> *{transition:all 1s ease 0s;} #showSlide{width:300px;height:200px;overflow:hidden; border:20px solid #ccc;box-shadow:1px 1px 3px rgba(0,0,0,1); } #inner{} .slide{width:300px;height:200px;display:inline-block;} label{border-radius: 5px;display: inline-block;width: 10px;height: 10px;background: #ccc;cursor:pointer;} input{display:none} #slide1:hover ~ #showSlide #inner{margin-top:0;} #slide2:hover ~ #showSlide #inner{margin-top:-200px;} #slide3:hover ~ #showSlide #inner{margin-top:-400px;} #slide4:hover ~ #showSlide #inner{margin-top:-600px;} label:hover{background:#000;} </style> </head> <body> <input checked="checked" name="slider" id="slide1" type="radio"> <input name="slider" id="slide2" type="radio"> <input name="slider" id="slide3" type="radio"> <input name="slider" id="slide4" type="radio"> <input name="slider" id="slide5" type="radio"> <div id="showSlide"> <div id="inner"> <artical> <div class="slide"><img src="images/slide1.jpg"></div> </artical> <artical> <div class="slide"><img src="images/slide2.jpg"></div> </artical> <artical> <div class="slide"><img src="images/slide3.jpg"></div> </artical> <artical> <div class="slide"><img src="images/slide4.jpg"></div> </artical> </div> </div> <div id="controller"> <label for="slide1"></label> <label for="slide2"></label> <label for="slide3"></label> <label for="slide4"></label> </div> </body> </html>
2022年12月16日
121 阅读
0 评论
0 点赞
2022-12-16
uniapp打包www文件使用android基座打原生aab和apk包
1.打开Android基座工程文件2.放入uniapp资源文件www到指定目录3.配置好版本号每次打包发布Google Play前需增加版本号复制签名密码,下一步操作用到4.开始编译打包选择打包类型aab或者apk(谷歌选择aab)粘贴上一步复制的密码完成
2022年12月16日
184 阅读
0 评论
0 点赞
2022-12-16
uniapp打包www文件使用ios基座打原生ipa包
1.打开ios基座工程文件本地先安装好xcode开发软件,依次打开:iOSSDK@2.9.8.80363_20201110 👉 HBuilder-Hello 👉 HBuilder-Hello.xcodeproj 2.放入uniapp资源文件www到指定目录3.配置好对应证书debug对应开发证书release对应分发证书4.配置好版本号version为最新版本号build为打包次数,每次打包需比上一次数值大5.打包提交可以在Organizer找到历史打包记录6.提交上传App Store点击 Distribute App 按钮提交正式包注:证书配置正确,当前登录的开发者账号正确的话,正常情况都能顺利提交。偶尔可能遇到苹果开发者网站自身服务或网络不畅会出现提交不成功,多试几次即可。视具体报错原因百度一般能查到解决方案。
2022年12月16日
241 阅读
0 评论
0 点赞
1
2
3
4
...
14
您的IP: