Skip to content

Instantly share code, notes, and snippets.

@foru17
Created June 12, 2014 14:01
Show Gist options
  • Save foru17/f7a60c56fc785d458e23 to your computer and use it in GitHub Desktop.
Save foru17/f7a60c56fc785d458e23 to your computer and use it in GitHub Desktop.
给文字创造一个渐隐的图层
<style>
.intro{
display: block;
height: 26px;
line-height: 26px;
width: 300px;
overflow: hidden;
position: relative;
}
.intro .mask{
display: block;
position: absolute;
bottom:0;
left: 0;
top: 0;
width: 100%;
text-align: center;
background-image: -webkit-linear-gradient(left, transparent, #fff);
}
</style>
<div class="intro">
<p>balalalbalba这里是文字</p>
<span class="mask">/span>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment