English 中文(简体)
您能否使用CSS的间谍,用于网络kit-mask- Box-image(或剪切?)
原标题:Can you use a CSS sprite for webkit-mask-box-image (or clip it?)

I m 玩弄-webkit-mask- Box-image cs property。

<div style="
    background-color: red;
    -webkit-mask-box-image: url( images/cards/set1.png );
"></div>

这发挥了巨大作用。 最后,我对面罩的面貌有了一个红色元素。

唯一的捕获量是,我需要大约25种不同的图像。 我只能装上25个不同的面罩图像,但如果我只拿一个图像,然后用像像像扫描仪,我重新定位或投射。

但我想到的是,用面罩这样做的好办法。 是否可行?

我提出的一种解决办法是使用类似于这种标记:

<div style="
    width: 100px; 
    height: 100px; 
    overflow: hidden; 
    position: relative;">
    <div style="
        background-color: red;
        -webkit-mask-box-image: url( images/cards/set1.png );
        position: absolute;
        top: -400px
    "></div>
</div>

我不像你那样使用背景形象,不把这种形象定位为一种间谍,而是使用一种DIV,把这种形象放在自己种植的母体内。 我认为,这是科索沃的一种选择,但是,我很想知道,是否已经设计了以网络为中心的CSS财产。

最佳回答

由于我确实对你的问题感兴趣,我打上了网库的面罩——我不敢肯定,如果我正确理解<条码>-webkit-mask-image和<条码>之间的区别——但我的主要区别是<条码>-webkit-mask- Box-image。 即使面面面面貌不相同,也能够伸缩到集装箱。

由于你有固定大小的集装箱,我将尝试使用<代码>-webkit-mask-position来改变面罩形象(指出它只与-webkit-mask-image合作)。

Sample:

Code:

<div class="image mask">
    <img src="image.jpg" />
</div>
<br />
<div class="image mask2">
    <img src="image.jpg" />
</div>


.image {width:200px;height:200px;}
.mask {
    border:1px solid green;
    -webkit-mask-image: url( mask.gif );
    -webkit-mask-repeat:no-repeat;
    -webkit-mask-position:0 0;
}
.mask2 {
    border:1px solid green;
    -webkit-mask-image: url( mask.gif );
    -webkit-mask-repeat:no-repeat;
    -webkit-mask-position:0 -200px;
}

你们不敢工作,但是,在座各位却感到dig。

问题回答

暂无回答




相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

jquery ui dialog opens only once

I have a button that opens a dialog when clicked. The dialog displays a div that was hidden After I close the dialog by clicking the X icon, the dialog can t be opened again.

Drop down background url in Safari Issue

selectBox.selectCSS { background: url(/Images/replacementSelectBackground.png) top left no-repeat height:auto; } I have an issue in Safari only where the image is not rendering on top ...

CSS specific for Safari

How do you target specifically safari in css with styles?

Aligning textarea in a form

Ive used the following css code to align my form elements: form { position:relative; } form input { position:absolute; left:11em; } However, the textarea element is not aligned correctly with the ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

CSS problem with page footer

I have defined my page footer in the css file as: #footer { position: absolute; height: 50px; text-align: center; background: #66CCCC; bottom: 0px; left: 0px; width: 100%; height: ...

热门标签