Skip to content

Instantly share code, notes, and snippets.

@lizhug
lizhug / UnityVideoPlayer.cs
Last active April 19, 2022 06:22
Unity Player Video In Background Raw Image/Unity启动页面背景播放视频,类似王者荣耀
public string videoUrl;
public RawImage playRawImage;
public VideoPlayer videoPlayer;
void Start()
{
videoPlayer.url = videoUrl;
}
// Update is called once per frame
@lizhug
lizhug / imageMerge.php
Created May 9, 2017 05:30
php图片合并、添加文字
<?php
$path = "assets/img/qrcode_invite_template.jpeg";
$image = imagecreatefromjpeg($path);
$imageInfo = getimagesize($path);
//合成昵称
$textColor = imagecolorallocatealpha($image,255,0,0,50); //字体颜色
$textContent = "反倒是咖啡";
fdsfsdafsdfadfdsaf
faasdaf
dsaf
dsaf
dsaf
ds
fds
afds
fds
afds
@lizhug
lizhug / gist:8ce131b83e436175a76f
Last active August 29, 2015 14:03
The different between mouseleave with mouseout
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>the difference between mouseout with mouseleave in jQuery</title>
<style>
.outbox {
width: 400px;
height: 400px;
border: 1px solid #000;
<html>
<head>
<meta charset="utf-8" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/gsap/1.9.0/TweenMax.min.js"></script>
<style type="text/css">
body {
background-color: #111;
color: #fff;