码迷,mamicode.com
首页 > Web开发 > 详细

网页图片垂直剧中 等比例缩放 黑白显示

时间:2014-10-20 13:15:07      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:style   http   color   io   os   ar   sp   div   on   

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</script>
<style type="text/css">
<!--
body {
 margin-left: 0px;
 margin-top: 0px;
 margin-right: 0px;
 margin-bottom: 0px;
}


img
{
 
 width: expression_r(this.width > 200 && this.width > this.height ? 200 : true);
 height: expression_r(this.height > 160 ? 200 : true);
 
 max-width:200px;max-height:160px;
 min-width:0px;min-height:0px;
 
 position:static;
 +position:relative;
 top:-50%;left:-50%;
filter: Gray;
}

div
{
 width:500px;
 height:360px;
 background:#000;
 overflow:hidden;
 position:relative;
 display:table-cell;
 text-align:center;
 vertical-align:middle;

}

p
{
 
  position:static;
  +position:absolute;
  top:50%;
  background-color:#0F0;
}
-->
</style></head>
<body>
<div><p><a href="#"><img src="Chrysanthemum.jpg"/></a></p></div>
</body>
</html>

网页图片垂直剧中 等比例缩放 黑白显示

标签:style   http   color   io   os   ar   sp   div   on   

原文地址:http://www.cnblogs.com/dcrenl/p/4036737.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!