码迷,mamicode.com
首页 >  
搜索关键字:shared elements tran    ( 12347个结果
CSS样式更改——过渡、动画
###前言上篇文章主要讲述了CSS样式更改中的2D转换,这篇文章我们来介绍下CSS样式更改中的过渡、动画基础用法。####1.过渡元素从一种样式逐渐改变为另一种的样式div{transition:width1s;-moz-transition:width1s;/*Firefox4*/-webkit-transition:width1s;/*Safari和Chrome*/-o-transition:
分类:Web程序   时间:2020-09-17 23:37:08    阅读次数:47
问题 K: Length of Bundle Rope
问题 K: Length of Bundle Rope 时间限制: 2 Sec 内存限制: 1024 MB提交 状态 题目描述 Due to the development of online shopping, the logistics industry which is highly conn ...
分类:其他好文   时间:2020-09-17 22:58:33    阅读次数:44
sqlmap_user谷歌浏览器翻译中文
Usage Usage: python sqlmap.py [options] Options: -h, --help Show basic help message and exit -hh Show advanced help message and exit --version Show pr ...
分类:数据库   时间:2020-09-17 19:59:29    阅读次数:36
【leetcode】移除链表元素
struct ListNode* removeElements(struct ListNode* head, int val){ if (head == NULL) { return NULL; } head->next = removeElements(head->next, val); retu ...
分类:其他好文   时间:2020-09-17 19:25:01    阅读次数:24
Python+Selenium自动化测试之163框架切换
import time from selenium import webdriver driver = webdriver.Chrome() driver.get("https://email.163.com") time.sleep(2) iframe = driver.find_elements ...
分类:编程语言   时间:2020-09-17 18:46:29    阅读次数:27
shader——uv动画水波纹
效果:让波纹在鲨鱼身上动 设计思路:模型上有多个贴图,找到一张黑色背景的贴图(我们这里贴图使用的叠加的方式,而黑色背景的贴图,黑色(0,0,0,0)不会产生任何影响) 在unity中找到一个模型,找到它的材质面板,创建一个shader(unlit shader) Shader "Custom/Big ...
分类:其他好文   时间:2020-09-17 17:38:39    阅读次数:35
Linux下swap升高的原因分析案例
机器配置:2 CPU,8GB 内存 需要预先安装 sysstat 等工具,如 yum install sysstat 终端中运行 free 命令,查看 Swap 的使用情况。 $ free total used free shared buff/cache available Mem: 816934 ...
分类:系统相关   时间:2020-09-17 16:05:19    阅读次数:44
删除链表中的元素
/** * https://leetcode-cn.com/problems/remove-linked-list-elements/ * 删除链表中等于给定值 val 的所有节点。 * * 输入: 1->2->6->3->4->5->6, val = 6 * 输出: 1->2->3->4->5 * ...
分类:其他好文   时间:2020-09-16 12:24:18    阅读次数:32
前端调用测试页(Dapper)
@{ ViewBag.Title = "测试页"; Layout = "~/Views/Shared/_LayoutPage.cshtml"; } <div> 上传文件 <input type="file" id="file" /> <br /> <input type="button" id="u ...
分类:移动开发   时间:2020-09-14 19:00:22    阅读次数:56
等比例缩放图片
1 /// <summary> 2 /// 等比例缩放图片 3 /// </summary> 4 /// <param name="bitmap">图片</param> 5 /// <param name="destHeight">高度</param> 6 /// <param name="dest ...
分类:其他好文   时间:2020-09-12 21:51:46    阅读次数:46
12347条   上一页 1 ... 25 26 27 28 29 ... 1235 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!