单击【调整】组中的“亮度”按钮,在d出的列表中单击“图片修正选项”按钮,打开【设置图片格式】对话框。单击左侧窗格中的“阴影”按钮,切换到【阴影】面板中,单击【预设】按钮,从d出的下拉列表中选择一种阴影效果,单击“关闭”按钮。
<!DOCTYPE html><html>
<head>
<meta content="text/html charset=gb2312" http-equiv="Content-Type">
<title>文哥讨厌IE</title>
<script type="text/javascript" src="jquery.js"></script>
<style type="text/css">
.box-shadow{
box-shadow: 10px 10px 10px 10px red
}
.obj{
border-radius:100px
width:100px
height:100px
margin:50px auto
background:#eee
}
</style>
</head>
<body>
<div class="obj" ></div>
<script type="text/javascript">
$(document).ready(function(){
$(".obj").mouseover(function(){
$(".obj").addClass("box-shadow")
})
$(".obj").mouseout(function(){
$(".obj").removeClass("box-shadow")
})
})
</script>
</body>
</html>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)