-
-
Save leoneed/5051461 to your computer and use it in GitHub Desktop.
Суть модуляций состоит в том,
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Суть модуляций состоит в том, | |
что некоторые заранее | |
определенные свойства элемента | |
(цвет, позиционирование и т.д.) | |
изменяются не резко, | |
как это обычно бывает | |
с добавлением класса, | |
в котором переопределены | |
текущие свойства элемента, | |
а плавно, ну или лучше сказать | |
"контролируемо". | |
*/ | |
div | |
{ | |
position: absolution; | |
width: 200px; | |
height: 200px; | |
left: 0px; | |
background-color: yellow; | |
transition: background-color 0.3s linear; | |
} | |
div:hover | |
{ | |
left: 10px; | |
background-color: black; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div><div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"view":"separate","fontsize":"110","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment