Графические ссылки, которые изменяются при наведении курсора с помощью :hover.

Создание графических ссылок, которые изменяются при наведении курсора на изображение с помощью :hover.

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>Rollovers 1</title>
	<style>
		body {
			font: 12px arial, helvetica, sans-serif;
		}

		#toucan {
			/* Note: Using the '#toucan' ID selector (targeting elements with 'id="toucan"') instead of a simple 'a' HTML selector (targeting all a elements) so that this doesn't target the link back to HTML Dog at the bottom of the page */
			display: block;
			width: 200px;
			height: 63px;
			background-image: url(https://foxyforex.ru/toucancombo);
			text-indent: -999em;
		}

		a:hover {
			background-position: bottom;
		}
	</style>
</head>
<body>
	<p><a href="#" id="toucan">Toucan</a></p>
</body>
</html>

Страницы в тему:

  • Откаты 2: дополнительные интерактивные эффекты с использованием псевдокласса :active
  • Откаты 3: затухание появляется и исчезает
  • Ролловеры (Приёмы)

Добавить комментарий