利用阿里云函数计算无成本搭建OneIndex-Serverless属于你自己的网盘
Onindex-Serverless是OneIndex项目的阿里云函数计算版本OneIndex云函数版 -...
两性专家教你怎样提高男人持久性和硬度
两性专家教你怎样提高男人持久性和硬度直接上视频 ↓(function(){var player = new DPlayer({"container":document.getElementById("dplayer4"),"video":{"url":"https://oss.4ce.cn/api?path=/www.vvhan.com/%E4%B8%A4%E6%80%A7%E4%B8%93%E5%AE%B6%E6%95%99%E4%BD%A0%E6%80%8E%E6%A0%B7%E6%8F%90%E9%AB%98%E7%94%B7%E4%BA%BA%E6%8C%81%E4%B9%85%E6%80%A7%E5%92%8C%E7%A1%AC%E5%BA%A6.mp4&raw=true"}});window.dplayers||(window.dplayers=[]);window.dplayers.push(player);})()
最强表白!238位摄影师献礼!《韵动中国2019》4K 震撼来袭!
最强表白!238位摄影师献礼!《韵动中国2019》4K 震撼来袭!(function(){var player = new DPlayer({"container":document.getElementById("dplayer15"),"video":{"url":"https://raspi-alist.4ce.cn/d/E5/www.vvhan.com/%E9%9F%B5%E5%8A%A8%E4%B8%AD%E5%9B%BD_www.vvhan.com.mp4"}});window.dplayers||(window.dplayers=[]);window.dplayers.push(player);})() 转自: 新片场
CSS动态渐变彩色文字代码
HTML部分:1<div class="wrap">闲看儿童捉柳花</div> CSS部分:1234567891011121314151617181920212223242526272829303132333435@keyframes move { 0% { background-position: 0 0; } 100% { /*宽度固定,如果为百分比背景不会滚动*/ background-position: -300px 0; }}.wrap { /*设置背景渐变色*/ background-image: linear-gradient( to right, red, orange, yellow, green, yellow, orange, red, orange, yellow, green, yellow, orange, red ); ...
网页用JS屏蔽各种按键代码
网页屏蔽鼠标右键Ctrl+N、Shift+F10、F11、F5刷新、退格键等按键12345678910111213141516171819202122232425262728293031<script> //屏蔽鼠标右键Ctrl+N、Shift+F10、F11、F5刷新、退格键 function document.oncontextmenu(){ event.returnValue = false; } //屏蔽鼠标右键 function window.onhelp(){ return false } //屏蔽F1帮助 function document.onkeydown(){ if ((window.event.altKey) && ((window.event.keyCode == 37) || //屏蔽Alt+方向键← (window.event.keyCode == 39))) { ...
PHP简单的Curl的Get请求和Curl的Post请求和file_get_contents的Get请求获取接口JSON数据
PHP携带Cookie用Curl进行Post或Get请求获取数据#PHP全能Curl请求 1234567891011121314151617181920212223242526272829303132333435363738394041424344/** * curl发送HTTP请求方法 * @param $url * @param string $method * @param array $params * @param array $header * @param int $timeout * @param bool|false $multi * @return mixed * @throws Exception */function hansCurl( $url, $method = 'GET', $params = array(), $header = array(), $timeout = 30, $multi = false ) { $curl =...
PHP读本地文件指定某行内容
小文件直接2行代码解决1234<?php$a = file('xiaohana.txt'); //读取同目录xiaohana.txt文本echo $a[5];//输入本文档的第6行内容?> 如果文件较大,内容较多用以下代码123456789101112131415161718192021222324252627<?php$c = getLine('./a.txt', 10); // 读取a.txt文件第11行内容echo $c;/** * 获取指定行内容 * * @param $file 文件路径 * @param $line 行数 * @param $length 指定行返回内容长度 */function getLine($file, $line, $length = 4096){ $returnTxt = null; // 初始化返回 $i = 1; // 行数 $handle = @fopen($file, "r"); if ($handle) { ...
PHP保存下载远程文件或图片到本地
直接上代码直接运行即可12345678910111213<?php$url = "文件地址"; //网络资源的地址$state = @file_get_contents($url, 0, null, 0, 1); //获取网络资源的字符内容$filename = rand(0, 123562122) . '.jpg'; //文件名称生成ob_start(); //打开输出readfile($url); //输出图片文件$img = ob_get_contents(); //得到浏览器输出ob_end_clean(); //清除输出并关闭$size = strlen($img); //得到图片大小$fp2 = @fopen($filename, "a");fwrite($fp2, $img); //向当前目录写入图片文件,并重新命名fclose($fp2);?>
随机风景壁纸
送上几张4K风景壁纸,喜欢的拿走(页面刷新,你就找不到咯)
安卓Android按钮Button点击和复选框CheckBox选中的监控触发事件
CheckBox复选框和按钮Button的定义,main.xml内容如下:123456789101112131415<CheckBox android:id="@+id/checkbox1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="复选框1"/><Button android:id="@+id/button1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentLeft="true" ...