Jump to content
  • 0

Спрятать движущийся текст в CSS


Coriolis
 Share

Question

Есть движущийся текст, двигается из стороны в сторону в коробке, требуется сделать, чтобы текст не было видно, когда он выходит за пределы коробки:

 

HTML файл:

<html>	<head>		<title>123</title>		<link rel="stylesheet" href="css.css">	</head>		<body>		<div id="banner">				<h1>Акция!<br> 3 по цене 2!</h1>		</div>	</body>	</html>

CSS:

div#banner{	border: 10px solid orange;	border-radius:10px;	width:500px;	height: 300px;	margin: auto;	background-color: brown;} h1{	font-size: 50px;	font-family: Comic Sans MS;	vertical-align: middle;	-webkit-animation: ani 1s infinite alternate;	animation: ani 1s infinite alternate;	white-space: nowrap;}@-webkit-keyframes ani{	from {text-shadow: 0 0 7px rgba(90, 200, 200, 0.7); ; }	to {text-shadow: 0 0 7px rgba(200, 150, 90, 0.7); margin-left: 550px;}}@keyframes ani{	from {text-shadow: 0 0 7px rgba(90, 200, 200, 0.7); ;}	to {text-shadow: 0 0 7px rgba(200, 150, 90, 0.7); margin-left: 550px;}}

fd0f893fce9800234187d14339d105b6.jpg

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy