Skip to content

Instantly share code, notes, and snippets.

@chestozo
Created November 3, 2012 12:33
Show Gist options
  • Save chestozo/4007242 to your computer and use it in GitHub Desktop.
Save chestozo/4007242 to your computer and use it in GitHub Desktop.
Untitled
* {
font: 10pt arial;
}
.parent {
width: 100px;
overflow: hidden;
position: relative;
}
.inner {
white-space: nowrap;
transition-properties: margin-left;
transition-duration: 2s;
margin-left: 0;
}
.inner:hover {
margin-left: -140px;
}
.fade {
background-image: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,255));
position: absolute;
right: 0;
width: 20px;
height: 100%;
}
<div class="parent">
<div class="fade"></div>
<div class="inner">Very very long string for very long people</div>
</div>
{"view":"split-vertical","fontsize":"70","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment