简体   繁体   English

文字字幕已经切断

[英]Text Marquee is cutting off

I have to use a marquee with quite a long string of text. 我必须使用带有很长文本字符串的选取框。 I've worked this code a few different ways but in the end, the text is always cut off after a few words (or the first line). 我用几种不同的方式来编写此代码,但最后,总是在几个单词(或第一行)之后截断文本。 I need the entirety of all the text to continue scrolling. 我需要所有文本的全部内容才能继续滚动。 If we could keep it within the CSS, that'd be ideal. 如果我们可以将其保留在CSS中,那将是理想的选择。 Thanks! 谢谢!

You can see it here: http://braidsmusic.com/test 您可以在这里看到它: http : //braidsmusic.com/test

 .scroll-left { height: 100px; overflow: hidden; position: relative; } .scroll-left h1 { position: absolute; width: 150%; height: 100%; margin: 0; line-height: 50px; text-align: center; /* Starting position */ -moz-transform: translateX(100%); -webkit-transform: translateX(100%); transform: translateX(100%); /* Apply animation to this element */ -moz-animation: scroll-left 10s linear infinite; -webkit-animation: scroll-left 10s linear infinite; animation: scroll-left 10s linear infinite; } /* Move it (define the animation) */ @-moz-keyframes scroll-left { 0% { -moz-transform: translateX(100%); } 100% { -moz-transform: translateX(-100%); } } @-webkit-keyframes scroll-left { 0% { -webkit-transform: translateX(100%); } 100% { -webkit-transform: translateX(-100%); } } @keyframes scroll-left { 0% { -moz-transform: translateX(100%); /* Browser bug fix */ -webkit-transform: translateX(100%); /* Browser bug fix */ transform: translateX(100%); } 100% { -moz-transform: translateX(-100%); /* Browser bug fix */ -webkit-transform: translateX(-100%); /* Browser bug fix */ transform: translateX(-100%); } } 
 <div class="scroll-left"> <h1 style="color: #ccc; line-height:90px;">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</h1> </div> 

  • scroll-left width automatic fill with text width. 向左滚动宽度自动填充文本宽度。 So use fit-content; 因此,使用适合内容;
  • changed start position to 30% 将开始位置更改为30%

 body{ overflow-x:hidden; } .scroll-left { height:auto; width:fit-content; } .scroll-left h1 { height:auto; margin: 0; /* Starting position */ -moz-transform: translateX(30%); -webkit-transform: translateX(30%); transform: translateX(30%); /* Apply animation to this element */ -moz-animation: scroll-left 30s linear infinite; -webkit-animation: scroll-left 30s linear infinite; animation: scroll-left 30s linear infinite; } /* Move it (define the animation) */ @-moz-keyframes scroll-left { 0% { -moz-transform: translateX(30%); } 100% { -moz-transform: translateX(-100%); } } @-webkit-keyframes scroll-left { 0% { -webkit-transform: translateX(30%); } 100% { -webkit-transform: translateX(-100%); } } @keyframes scroll-left { 0% { -moz-transform: translateX(30%); /* Browser bug fix */ -webkit-transform: translateX(30%); /* Browser bug fix */ transform: translateX(30%); } 100% { -moz-transform: translateX(-100%); /* Browser bug fix */ -webkit-transform: translateX(-100%); /* Browser bug fix */ transform: translateX(-100%); } } 
 <div class="scroll-left"> <h1 style="color: #ccc; white-space:nowrap;">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</h1> </div> 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM