css3实现磨砂效果,CSS3打造磨砂玻璃背景效果

简介

这个效果是在看CSS Secrets这书上看到的,感觉很不错;

实现原理也挺简单的;

效果图及实现

效果图

17ff21be13d80301dbd3d6dcc70f2862.png

代码实现

Document

/**

* 设置背景图全屏覆盖及固定

* 设置内部元素偏移

*/

body {

/*此处背景图自行替换*/

background: url(demo.jpg) no-repeat center center fixed;

background-size: cover;

min-height: 100vh;

box-sizing: border-box;

margin: 0;

padding-top: calc(50vh - 6em);

font: 150%/1.6 Baskerville, Palatino, serif;

}

/**

* 整体居中功能;

* 背景透明虚化

* 溢出隐藏

* 边缘圆角化

* 文字增加淡阴影

*/

.description{

position: relative;

margin: 0 auto;

padding: 1em;

max-width: 23em;

background: hsla(0,0%,100%,.25) border-box;

overflow: hidden;

border-radius: .3em;

box-shadow: 0 0 0 1px hsla(0,0%,100%,.3) inset,

0 .5em 1em rgba(0, 0, 0, 0.6);

text-shadow: 0 1px 1px hsla(0,0%,100%,.3);

}

/*使用滤镜模糊边缘*/

.description::before{

content: '';

position: absolute;

top: 0; rightright: 0; bottombottom: 0; left: 0;

margin: -30px;

z-index: -1;

-webkit-filter: blur(20px);

filter: blur(20px);

}

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod

tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,

quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo

consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse

cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non

proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

总结

这种实现模式是考虑了性能来写的,以及维护上的考虑

- 比如使用了em,可以很轻松的放大缩小整体大小

- 这里使用了hsla,这是我第一次使用这个颜色值;以前只在ps调整这个,很不错的颜色模式.和RGBA大同小异,但是HSLA更符合人类眼睛的观看;

- 还学到了一种新的背景缩写方式/*分开写*/

background-color:#ff0;

background-image:url(background.gif);

background-repeat:no-repeat;

background-attachment:fixed;

background-position:0 0;

background-size:cover;

/*简写*/

background: #ff0 url(background.gif) no-repeat / fixed cover;

/*设置background-size必须用单斜杠隔开*/

以上就是CSS3打造磨砂玻璃背景效果的内容,更多相关内容请关注PHP中文网(www.gxlcms.com)!

以下是一个简单的磨砂效果登录界面的HTML和CSS代码示例: HTML代码: ``` <!DOCTYPE html> <html> <head> <title>磨砂效果登录界面</title> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <div class="container"> <h1>登录</h1> <form> <label for="username">用户名</label> <input type="text" id="username" name="username" required> <label for="password">密码</label> <input type="password" id="password" name="password" required> <input type="submit" value="登录"> </form> </div> </body> </html> ``` CSS代码: ``` body { background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba'); background-size: cover; background-position: center; } .container { background-color: rgba(255,255,255,0.7); margin: 100px auto; max-width: 400px; padding: 40px; border-radius: 10px; box-shadow: 0 0 10px rgba(0,0,0,0.3); } h1 { text-align: center; margin-bottom: 20px; } form { display: flex; flex-direction: column; } label { font-weight: bold; margin-bottom: 10px; } input { padding: 10px; margin-bottom: 20px; border-radius: 5px; border: none; } input[type="submit"] { background-color: #4CAF50; color: white; cursor: pointer; } ``` 其中,`background-image`属性设置了页面的背景图片,`background-size`属性设置了背景图片的大小为cover,`background-position`属性设置了背景图片的位置为中间。`.container`类设置了登录框的样式,包括背景颜色,边距,最大宽度,内边距,边框半径和阴影。`form`元素和`label`元素设置了登录表单的样式,`input`元素设置了输入框的样式,`input[type="submit"]`元素设置了登录按钮的样式。最终实现了一个简单的磨砂效果登录界面。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值