Still messing around with zoomy scrolly stuff, it seems this should be pretty easy with filter
rogid
XImageTransform.Microsoft.AlphaImageLoader zoom method and clip:rect. (It only needs to work in IE6+)
Nothing says what the arguments to the first are and they appear quite bizarre. One would expect x,y,w,h by CSS standard but messing about with simple example below it appears to be y1,x2,y2,x1. Is this normal or some frigging bug in IE8? or have I got my monitor upside down? Don't want to waste time implementing in some buggy thing that is likely to change.
Has anyone actually used it?
<html>
<head>
</head>
<body>
<style type="text/css">
div {
background: url(test.jpg);
clip:rect(150px, 90px, 160px, 80px);
border:2px solid black;
height:300px;
width:300px;
position:absolute;
top:100px;
left:100px;
}
</style>
<div>
Clipped div box with image in the background.
</div>
</body>
</html>
rogid
XImageTransform.Microsoft.AlphaImageLoader zoom method and clip:rect. (It only needs to work in IE6+)Nothing says what the arguments to the first are and they appear quite bizarre. One would expect x,y,w,h by CSS standard but messing about with simple example below it appears to be y1,x2,y2,x1. Is this normal or some frigging bug in IE8? or have I got my monitor upside down? Don't want to waste time implementing in some buggy thing that is likely to change.
Has anyone actually used it?
<html>
<head>
</head>
<body>
<style type="text/css">
div {
background: url(test.jpg);
clip:rect(150px, 90px, 160px, 80px);
border:2px solid black;
height:300px;
width:300px;
position:absolute;
top:100px;
left:100px;
}
</style>
<div>
Clipped div box with image in the background.
</div>
</body>
</html>



Comment