博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
纯CSS3写的10个不同的酷炫图片遮罩层效果
阅读量:7022 次
发布时间:2019-06-28

本文共 1809 字,大约阅读时间需要 6 分钟。

这个是纯CSS3实现的的10个不同的酷炫图片遮罩层效果,可以欣赏一下

实例代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html PUBLIC 
"-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
>
<html xmlns=
"http://www.w3.org/1999/xhtml"
>
    
<head>
        
<meta http-equiv=
"Content-Type" 
content=
"text/html; charset=utf-8" 
/>
        
<title>纯CSS3写的10个不同的酷炫图片遮罩层效果</title>
        
<link rel=
"stylesheet" 
type=
"text/css" 
href=
"css/demo.css" 
/>
 
        
<!--必要样式-->
        
<link rel=
"stylesheet" 
type=
"text/css" 
href=
"css/style_common.css" 
/>
        
<link rel=
"stylesheet" 
type=
"text/css" 
href=
"css/style1.css" 
/>
 
 
    
</head>
    
<body>
 
        
<div 
class
=
"main"
>
            
<div 
class
=
"view view-first"
>
                
<img src=
"images/1.jpg" 
/>
                
<div 
class
=
"mask"
>
                    
<h2><a href=
'#'
>PHP中SESSION和COOKIE基本用法</a></h2>
                    
<p>在项目中我们会经常用到Session和Cookie,比如用户登录验证、记录用户浏览历史,存储购物车数据,限制用户会话有效时间等。今天我们介绍下PHP是如何操作Session和Cookie的。</p>
                    
<a href=
"#" 
class
=
"info"
>Read More</a>
                
</div>
            
</div>
            
<div 
class
=
"view view-first"
>
                
<img src=
"images/2.jpg" 
/>
                
<div 
class
=
"mask"
>
                    
<h2><a href=
'#'
>HTML5制作简单的钟表</a></h2>
                    
<p>今天我们用canvas标签并配合javascript来制作一个漂亮的时钟</p>
                    
<a href=
"#" 
class
=
"info"
>Read More</a>
                
</div>
            
</div>
            
<div 
class
=
"view view-first"
>
                
<img src=
"images/3.jpg" 
/>
                
<div 
class
=
"mask"
>
                    
<h2><a href=
'#'
>jQuery拉伸搜索框</a></h2>
                    
<p>今天分享一个CSS3+jQuery制作一个可伸缩功能的搜索框。</p>
                    
<a href=
"#" 
class
=
"info"
>Read More</a>
                
</div>
            
</div>
            
<div 
class
=
"view view-first"
>
                
<img src=
"images/4.jpg" 
/>
                
<div 
class
=
"mask"
>
                    
<h2><a href=
'#'
>CSS3不同背景颜色的圆角按钮</a></h2>
                    
<p>今天分享下用CSS3来制作一个圆角阴影、渐变色的漂亮的按钮。</p>
                    
<a href=
"#" 
class
=
"info"
>Read More</a>
                
</div>
            
</div>
        
</div>
    
</body>
</html>

  转载自:http://www.cnblogs.com/niuboren/p/6096389.html

转载于:https://www.cnblogs.com/lianzhibin/p/6099689.html

你可能感兴趣的文章
hdu4462 Scaring the Birds
查看>>
设计中的道理_6
查看>>
MFC——AfxParseURL用法
查看>>
Cocos2d-x3.2 Sprite精灵类的创建与设置
查看>>
Starting MySQL.Manager of pid-file quit without updating file.[FAILED]
查看>>
深入浅出PostgreSQL B-Tree索引结构
查看>>
PostgreSQL 如何高效解决 按任意字段分词检索的问题 - case 1
查看>>
玩转PS路径,轻松画logo!
查看>>
浅析 JavaScript 中的闭包(Closures)
查看>>
python 之 PEP8 风格
查看>>
Python Pandas concat 的使用
查看>>
RHEL 网络的简单配置
查看>>
新机开源经历
查看>>
(Mac)VMware Fusion 安装centos ,mac访问不了centos里的web服务器解决方案
查看>>
GuozhongCrawler系列教程 (4) StartContext详解
查看>>
shell脚本案例
查看>>
Web语义化
查看>>
[case分享]Exchange 2013 IMAP问题解决历程
查看>>
nginx安装
查看>>
如何开启MySQL的远程帐号
查看>>