FRC uses flash to created backgrounds, including rounded corners.
The background here is not just static image, try to scroll or resize the window.
Dynamicly loads external images(JPEG,GIF,PNG), click and wait:
Scale-9 supported:
Blending mode supported, select to change:
Select to change the main background:
FlashPlayer8+ needed.
Tested on Firefox1.5 and IE6+/WIN, Opera is not supported yet. Haven't got a Mac to do the test.
Here is another block applied FRC.
The HTML is simple, just apply a class to the block you want to be rounded:
<div class="FRC"> <p>Another block applied FRC.</p> <p>blah blah blah</p> </div>
Use CSS to load images, set the scale9 grid as well as the blending mode (more functionalities to be added here):
.style1{
-FRC:"FRC_IMG=001.png&FRC_GRID9=50,50,125,195&FRC_BMODE=overlay";
}
.style1:after{
display:none;
content:"FRC_IMG=001.png&FRC_GRID9=50,50,125,195&FRC_BMODE=overlay";
font-family:"FRC_IMG=001.png&FRC_GRID9=50,50,125,195&FRC_BMODE=overlay";
}
As you can see the CSS rules are kinda weird 'cause I don't konw how to use customized CSS yet.
Change history:
Any suggestion? Leave a comment here.
Back to web.Frontend