ClipDrawable ClipDrawable代表从其他位图上截取一个“图片片段” 在XML文件中定义ClipDrawable对象使用<clip.../>元素,该元素的语法为: 以上语法格式中可指定如下三个属性: 1.android:drawable:指定截取的源Drawable对象 2.and ...
分类:
移动开发 时间:
2016-09-07 12:45:35
阅读次数:
239
Android Drawable资源归纳 ClipDrawable代表从其他位图上截取一个“图片片段”(其他动画XML资源都放在/res/drawable/路径下)clip标签,<clip /> AnimationDrawable ,包括补间动画和逐帧动画//定义补间动画的XML资源文件以<set. ...
分类:
移动开发 时间:
2016-09-01 16:25:42
阅读次数:
193
好几个月没写 blog 了,一个是在忙新版的碧影壁纸,另一方面是等(观望)周年更新的 api(不过现在还是比较失望,仍然没法支持矩形以外的 Clip)。闲话少说,进入主题。 在 UWP 中,出于性能考虑,微软是不建议、不推荐对会影响布局的属性进行动画的。例如 Width 和 Height 这种,如果 ...
分类:
其他好文 时间:
2016-08-31 22:27:13
阅读次数:
200
using UnityEngine;using System.Collections; public class PlayTest : MonoBehaviour{ //电影纹理 public MovieTexture mov; void Start() { audio.clip = mov.aud ...
分类:
其他好文 时间:
2016-08-31 13:39:26
阅读次数:
123
pinchzoom官网http://manuelstofer.github.io/pinchzoom/PortraitClip.css.pinch-page{
position:fixed;
top:0;
bottom:0;
left:0;
right:0;
display:none;
width:100%;
height:100%;
background-color:#333;
z-index:9;
}
.pinch-page.top-mask,
.pinch-page.bottom-mask{
po..
分类:
其他好文 时间:
2016-08-29 20:54:00
阅读次数:
525
1、 (1)background-origin : border-box | padding-box | content-box;(设置元素背景图片的原始起始位置。) //需要注意的是,如果背景不是no-repeat,这个属性无效,它会从边框开始显示。 (2)background-clip(用来将背 ...
分类:
Web程序 时间:
2016-08-29 13:07:41
阅读次数:
169
先插入HTML结构: 结构是不是很简洁!css代码如下: 效果图如下: 怎么样是不是很简单呢!我们现在来总结一下: 1,充分利用padding元素! 2,使用border元素,设定边框! 3,css3:background-clip:content-box;最好用的来啦:使用background:c ...
分类:
Web程序 时间:
2016-08-26 13:37:30
阅读次数:
308
一、常用函数1、绘图函数pygame.display.set_mode(surface,(width,height))->Surface#设置画图窗口,参数1是一个surface对象,参数2是窗口长和宽;返回一个surface对象surface.blit(source,dest,area=None,special_flags=0)->Rect#在surface中绘制图像,参数中的source是..
分类:
其他好文 时间:
2016-08-21 01:02:31
阅读次数:
678
定位属性有11个:z-index position clip cursor top,right,bottom,left overflow,overflow-x,overflow-y position的值共有5个: inherit static absolute relative fixed 麻烦的地 ...
分类:
Web程序 时间:
2016-08-19 11:16:18
阅读次数:
165
转载自:http://www.cnblogs.com/wshiqtb/p/3144713.html 语法: text-overflow:clip | ellipsis 默认值:clip 适用于:所有元素 clip: 当对象内文本溢出时不显示省略标记(...),而是将溢出的部分裁切掉。 ellipsi ...
分类:
其他好文 时间:
2016-08-18 12:46:47
阅读次数:
249