文章出處
background:element()
<div style="width:400px; height:100px; background:-moz-element(#myBackground2);">一些文字
</div>
<div style="overflow:hidden; height:0;">
<button id="myBackground2" type="button">Evil button!</button>
</div>
效果:
<html>
<head>
<style>
div { background: -webkit-canvas(squares); width:600px; height:600px; border:2px solid black }
</style>
<script type="application/x-javascript">
function draw(w, h) {
var ctx = document.getCSSCanvasContext("2d", "squares", w, h);
ctx.fillStyle = "rgb(200,0,0)";
ctx.fillRect (10, 10, 55, 50);
ctx.fillStyle = "rgba(0, 0, 200, 0.5)";
ctx.fillRect (30, 30, 55, 50);
}
</script>
</head>
<body onload="draw(300, 300)">
<div></div>
</body>
</html>
效果:
歡迎轉載:http://www.kanwencang.com/bangong/20161116/55430.html
文章列表
background:image-set()
css4-images規范中的image-set可以實現Retina屏幕下圖片顯示,主要用以解決蘋果Retina屏幕對設計造成的挑戰。
在不支持image-set的瀏覽器下,他會支持background-image圖像,也就是說不支持image-set的瀏覽器下,他們解析background-image中的背景圖像;支持image-set:如果你的瀏覽器支持image-sete,而且是普通顯屏下,此時瀏覽器會選擇image-set中的@1x背景圖像;Retina屏幕下的image-set:如果你的瀏覽器支持image-set,而且是在Retina屏幕下,此時瀏覽器會選擇image-set中的@2x背景圖像。注:目前image-set只能使用webkit瀏覽器的私有屬性“-webkit”在“Safari6”和“Chrome21”下運行。IOS 6也可以得到支持。不過很遺憾的是,目前別的瀏覽器還是不支持image-set,現在他僅是CSS4的一個草案,使用時應注意。
background:element()
-moz-element():對于background-image的擴展,允許使用任何其他元素作為當前元素的背景。使用方法如下:
復制代碼
代碼如下:<div style="width:400px; height:100px; background:-moz-element(#myBackground2);">一些文字
</div>
<div style="overflow:hidden; height:0;">
<button id="myBackground2" type="button">Evil button!</button>
</div>
效果:
注:目前該CSS屬性只有firefox4+才支持,其他瀏覽器還不支持,請慎用!
background:canvas()
使用生成的canvas作為元素的背景。使用方法:
復制代碼
代碼如下:<html>
<head>
<style>
div { background: -webkit-canvas(squares); width:600px; height:600px; border:2px solid black }
</style>
<script type="application/x-javascript">
function draw(w, h) {
var ctx = document.getCSSCanvasContext("2d", "squares", w, h);
ctx.fillStyle = "rgb(200,0,0)";
ctx.fillRect (10, 10, 55, 50);
ctx.fillStyle = "rgba(0, 0, 200, 0.5)";
ctx.fillRect (30, 30, 55, 50);
}
</script>
</head>
<body onload="draw(300, 300)">
<div></div>
</body>
</html>
效果:
歡迎轉載:http://www.kanwencang.com/bangong/20161116/55430.html
文章列表
全站熱搜
留言列表