Эффект Трансформация. Transfer Effect.
Описание: Трансформирует выделенный элемент в другой элемент.Description: Transfers the outline of an element to another element.
Теория
Тесты по теории можно посмотреть здесь.
• transfer
◦ className
Type: String (Строка)
argumental class name the transfer element will receive.
Имя класса с аргументом, которое получит трансформируемый элемент.
◦ to
Type: String (Строка)
jQuery selector, the element to transfer to.
Селектор жКвери (jQuery), элемент, в который идет трансформация.
Example: (Пример: )
Example: Clicking on the green element transfers to the other.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | <!doctype html><html lang="en"><head> <meta charset="utf-8"> <title>transfer demo</title> <style> div.green { width: 100px; height: 80px; background: green; border: 1px solid black; position: relative; } div.red { margin-top: 10px; width: 50px; height: 30px; background: red; border: 1px solid black; position: relative; } .ui-effects-transfer { border: 1px dotted black; } </style></head><body><div class="green"></div><div class="red"></div><script>$( "div" ).click(function() { var i = 1 - $( "div" ).index( this ); $( this ).effect( "transfer", { to: $( "div" ).eq( i ) }, 1000 );});</script></body></html> |
Этот пример можно посмотреть здесь.












