Sprite 的缩放
Posted jingzeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Sprite 的缩放相关的知识,希望对你有一定的参考价值。
icon.png 大小为:27*237
假设,我们要获取到 放大境 这个图标,在大图(icon.png)中的坐标为:0,-197。width:11px; height:12px;
如果要截取原图大小,在css中代码如下:
.sprite { background: url(‘imgs/icon.png‘) no-repeat 0 -197px; width: 11px; height: 12px; }
如果要对放大镜这个图标进行缩放,假如放大一倍,代码如下:
.sprite{background: url(‘imgs/icon.png‘) no-repeat 0 -394px; background-size: 54px 474px; width: 22px; height: 24px;}
相应的对个参数乘2;其中backgroun-size为大图的尺寸。
以上是关于Sprite 的缩放的主要内容,如果未能解决你的问题,请参考以下文章
Sprite Kit:有没有办法禁用缩放模式并编码你想要发生的事情
在 webview_flutter 中启用捏合和缩放,在哪里添加代码片段 [this.webView.getSettings().setBuiltInZoomControls(true);]