首页 > web前端 > css教程 > 如何使用CSS实现设置半个字符的样式

如何使用CSS实现设置半个字符的样式

不言
发布: 2018-06-21 15:41:31
原创
1801 人浏览过

这篇文章主要介绍了纯CSS实现设置半个字符的样式,分别实现了水平和垂直一半、水平和垂直三分之一等效果,需要的朋友可以参考下

在stackoverflow上看到的问题怎么给半个字符设置样式,很多大神给出了答案。我就等就来学习围观吧。
一:基本解决方案:html:

1

2

3

4

<span class=”halfStyle” data-content=”X”>X</span>

<span class=”halfStyle” data-content=”Y”>Y</span>

<span class=”halfStyle” data-content=”Z”>Z</span>

<span class=”halfStyle” data-content=”A”>A</span>

登录后复制

css:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

.halfStyle {

position:relative;

display:inline-block;

font-size:80px; /* or any font size will work */

color: black; /* or transparent, any color */

overflow:hidden;

white-space: pre; /* to preserve the spaces from collapsing */

}

.halfStyle:before {

display:block;

z-index:1;

position:absolute;

top:0;

left:0;

width: 50%;

content: attr(data-content); /* dynamic content for the pseudo element */

overflow:hidden;

color: #f00;

}

登录后复制

效果如图:

这种方法用于任何动态文本或单个字符,并且都是自动适用的。所有你需要做的就是在目标文本上添加一个class,剩下的就解决了。

同时,保留了原文的可访问性,可以被盲人或视障人士使用的屏幕阅读器识别。

单个字符的实现:

纯CSS。所有你需要做的就是把.halfStyle class用在每个你想要渲染一半样式字符的元素上。

对于每个包含字符的span元素,你可以添加一个data属性,比如data-content=”X”,并且在伪元素上使用content:attr(data-content);这样,.halfStyle:before class将会是动态的,你不需要为每个实例进行硬编码

以下其它效果自行测试了。。。

二:左右开弓,两边都设置样式
更改CSS:

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

.halfStyle {

position:relative;

display:inline-block;

font-size:80px; /* or any font size will work */

color: transparent; /* hide the base character */

overflow:hidden;

white-space: pre; /* to preserve the spaces from collapsing */

}

.halfStyle:before { /* creates the left part */

display:block;

z-index:1;

position:absolute;

top:0;

width: 50%;

content: attr(data-content); /* dynamic content for the pseudo element */

overflow:hidden;

pointer-events: none; /* so the base char is selectable by mouse */

color: #f00; /* for demo purposes */

text-shadow: 2px -2px 0px #af0; /* for demo purposes */

}

.halfStyle:after { /* creates the right part */

display:block;

direction: rtl; /* very important, will make the width to start from right */

position:absolute;

z-index:2;

top:0;

left:50%;

width: 50%;

content: attr(data-content); /* dynamic content for the pseudo element */

overflow:hidden;

pointer-events: none; /* so the base char is selectable by mouse */

color: #000; /* for demo purposes */

text-shadow: 2px 2px 0px #0af; /* for demo purposes */

}

登录后复制

三:设置水平一半的样式
CSS:

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

.halfStyle {

position:relative;

display:inline-block;

font-size:80px; /* or any font size will work */

color: transparent; /* hide the base character */

overflow:hidden;

white-space: pre; /* to preserve the spaces from collapsing */

}

.halfStyle:before { /* creates the top part */

display:block;

z-index:2;

position:absolute;

top:0;

height: 50%;

content: attr(data-content); /* dynamic content for the pseudo element */

overflow:hidden;

pointer-events: none; /* so the base char is selectable by mouse */

color: #f00; /* for demo purposes */

text-shadow: 2px -2px 0px #af0; /* for demo purposes */

}

.halfStyle:after { /* creates the bottom part */

display:block;

position:absolute;

z-index:1;

top:0;

height: 100%;

content: attr(data-content); /* dynamic content for the pseudo element */

overflow:hidden;

pointer-events: none; /* so the base char is selectable by mouse */

color: #000; /* for demo purposes */

text-shadow: 2px 2px 0px #0af; /* for demo purposes */

}

登录后复制

四:水平三分之一的样式
css:

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

.halfStyle { /* base char and also the bottom 1/3 */

position:relative;

display:inline-block;

font-size:80px; /* or any font size will work */

color: transparent;

overflow:hidden;

white-space: pre; /* to preserve the spaces from collapsing */

color: #f0f;

text-shadow: 2px 2px 0px #0af; /* for demo purposes */

}

.halfStyle:before { /* creates the top 1/3 */

display:block;

z-index:2;

position:absolute;

top:0;

height: 33.33%;

content: attr(data-content); /* dynamic content for the pseudo element */

overflow:hidden;

pointer-events: none; /* so the base char is selectable by mouse */

color: #f00; /* for demo purposes */

text-shadow: 2px -2px 0px #fa0; /* for demo purposes */

}

.halfStyle:after { /* creates the middle 1/3 */

display:block;

position:absolute;

z-index:1;

top:0;

height: 66.66%;

content: attr(data-content); /* dynamic content for the pseudo element */

overflow:hidden;

pointer-events: none; /* so the base char is selectable by mouse */

color: #000; /* for demo purposes */

text-shadow: 2px 2px 0px #af0; /* for demo purposes */

}

登录后复制

五:垂直三分之的样式
css:

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

.halfStyle { /* base char and also the right 1/3 */

position:relative;

display:inline-block;

font-size:80px; /* or any font size will work */

color: transparent; /* hide the base character */

overflow:hidden;

white-space: pre; /* to preserve the spaces from collapsing */

color: #f0f; /* for demo purposes */

text-shadow: 2px 2px 0px #0af; /* for demo purposes */

}

.halfStyle:before { /* creates the left 1/3 */

display:block;

z-index:2;

position:absolute;

top:0;

width: 33.33%;

content: attr(data-content); /* dynamic content for the pseudo element */

overflow:hidden;

pointer-events: none; /* so the base char is selectable by mouse */

color: #f00; /* for demo purposes */

text-shadow: 2px -2px 0px #af0; /* for demo purposes */

}

.halfStyle:after { /* creates the middle 1/3 */

display:block;

z-index:1;

position:absolute;

top:0;

width: 66.66%;

content: attr(data-content); /* dynamic content for the pseudo element */

overflow:hidden;

pointer-events: none; /* so the base char is selectable by mouse */

color: #000; /* for demo purposes */

text-shadow: 2px 2px 0px #af0; /* for demo purposes */

}

登录后复制

以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP中文网!

以上是如何使用CSS实现设置半个字符的样式的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
css
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板