很好奇你如何制作像这样的图像文本
https://dribbble.com/shots/2150115-Alltracks/attachments/393908
答案 0 :(得分:-1)
有几种方法可以解决这个问题。例如,您可以在CSS3中跨页面设置背景图像,如下所示:
html {
background: url(images/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
您可能还想查看Clipping and Masking in CSS。 (在nzkks的评论中留下)