transition-to-prerender-ref.html (501B)
1 <!DOCTYPE html> 2 <title>View transitions: basic cross-document navigation to a prerender (ref)</title> 3 <style> 4 html,body { 5 margin: 0; 6 width: 100%; 7 height: 100%; 8 background-color: limegreen; 9 } 10 div { 11 position: fixed; 12 left: 0; 13 top: 0; 14 right: 0; 15 bottom: 0; 16 } 17 div.outgoing { 18 background-color: cornflowerblue; 19 transform: translateY(-55vh); 20 } 21 div.incoming { 22 background-color: hotpink; 23 transform: translateY(55vh); 24 } 25 </style> 26 <div class="incoming"></div> 27 <div class="outgoing"></div>