如何给图片加入一层黑影js

如何给图片加入一层黑影js,第1张

选中图片,切换到【格式】选项卡中。

单击【调整】组中的“亮度”按钮,在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>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11894183.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-19
下一篇 2023-05-19

发表评论

登录后才能评论

评论列表(0条)

保存