当前位置:   article > 正文

【css】图片的内容阴影处理_css 图片阴影

css 图片阴影

这个是基本效果,阴影和 图片内容有关。

其他图片的效果

 

根据需求删减代码,这里我做了一个简单的动画效果。

外面的box是为了让动画更阴影同步。

如果用倒影会导致镜像的周围模糊被切割。

以下是代码:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <style>
  7. body {
  8. background-color: #c8bbea;
  9. padding: 0;
  10. margin: 0;
  11. }
  12. .row {
  13. width: 100%;
  14. padding-top: 200px;
  15. }
  16. .box {
  17. display: block;
  18. width: 200px;
  19. margin: 0 auto;
  20. transition: all .3s ease-in;
  21. position: relative;
  22. }
  23. .text{
  24. position: absolute;
  25. width: 100%;
  26. text-align: center;
  27. margin: 0 auto;
  28. font-size: 40px;
  29. font-weight: 100;
  30. top:320px;
  31. color: transparent;
  32. -webkit-background-clip: text;
  33. -webkit-text-fill-color:transparent;
  34. background-image: linear-gradient(#340e9f, #c066ce);
  35. z-index: -2;
  36. }
  37. .box:hover {
  38. transform: translateY(-100px);
  39. /*transform: rotateX(78deg);*/
  40. transition: all .3s ease-in;
  41. }
  42. .avatar {
  43. height: 200px;
  44. width: 200px;
  45. border-radius: 50%;
  46. position: relative;
  47. background: url("https://scpic.chinaz.net/files/pic/pic9/202010/apic28717.jpg") no-repeat center center;
  48. background-size: 100% 100%;
  49. display: block;
  50. }
  51. .avatar::after {
  52. content: '';
  53. backdrop-filter: blur(10px);
  54. position: absolute;
  55. display: block;
  56. top: -10%;
  57. left: -10%;
  58. width: 120%;
  59. height: 120%;
  60. border-radius: 50%;
  61. z-index: -1;
  62. background: inherit;
  63. background-size: 100% 100%;
  64. filter: blur(20px) ;
  65. /* brightness(110%) opacity(.8)*/
  66. }
  67. </style>
  68. </head>
  69. <body>
  70. <div class="row">
  71. <div class="box">
  72. <div class="avatar"></div>
  73. </div>
  74. <div class="text">KatyLight</div>
  75. </div>
  76. </body>
  77. </html>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/266061
推荐阅读
相关标签
  

闽ICP备14008679号