Heim > Artikel > Web-Frontend > Wie man Text mit CSS einfügt
So implementieren Sie das Einschieben von Text mit CSS: Erstellen Sie zunächst eine HTML-Beispieldatei und definieren Sie eine Textzeile. Setzen Sie dann den CSS-Stil auf „h1:hover #slidemeta{display:block;-webkit-animation:slide...“ } „Das ist es.
Die Betriebsumgebung dieses Tutorials: Dell G3-Computer, Windows 7-System, HTML5- und CSS3-Version.
Empfohlen: „CSS-Video-Tutorial“
Horizontaler Gleiteffekt für CSS3-Text
HTML
<h1>将鼠标移至此处<div id="slidemeta">文字</div><h1>
CSS
#slidemeta { display: none; right:0; position: absolute; font-size: 14px; color: red; font-family:arial } h1:hover #slidemeta{ display:block; -webkit-animation:slide .8s ease-in; -webkit-animation-fill-mode:forwards; -moz-animation:slide .8s ease-in; -moz-animation-fill-mode:forwards; } @-webkit-keyframes slide{ 0% { right:410px; opacity:0;} 70% { right:0;opacity:0.7} 100% { opacity:1;right:85px;} } @-moz-keyframes slide{ 0% { right:410px; opacity:0;} 70% { right:0;opacity:0.7} 100% { opacity:1;right:85px;} }
Rendering:
Das obige ist der detaillierte Inhalt vonWie man Text mit CSS einfügt. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!