CSS 3.0实现泼墨画
Posted aiguangyuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS 3.0实现泼墨画相关的知识,希望对你有一定的参考价值。
给大家分享一个用CSS 3.0实现的泼墨画,效果如下:
以下是代码实现,欢迎大家复制、粘贴和收藏。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS 3.0实现泼墨画</title>
<style>
*
margin: 0;
padding: 0;
box-sizing: border-box;
section
position: relative;
width: 100%;
min-height: 100vh;
background: url(bg.jpg);
background-size: cover;
section::before
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url(splash.jpg);
background-position: center;
mix-blend-mode: screen;
background-size: 2200px;
</style>
</head>
<body>
<section></section>
</body>
</html>
以下是上面代码中引入的 bg.jpg 图片:
以下是上面代码中引入的 splash.jpg 图片:
以上是关于CSS 3.0实现泼墨画的主要内容,如果未能解决你的问题,请参考以下文章