2023-07-25 01:41:07 -04:00
// https://mspaintadventures.fandom.com/wiki/Mortality
// bobbing would be great...
// ^ requires a bit too much artistry to fill in the gaps i fear
// ^ or just. clone stamp that could work
// ^ it did, yay! :D
// bit of code i used on this page that i felt proud of:
// https://homestuck.net/img/resources/assets/uncategorized-assets/
// document.querySelectorAll("a").forEach(a => {
// const img = document.createElement("img");
// img.src = a.href;
// a.insertAdjacentElement("afterend", img);
// })
2023-07-27 12:20:58 -04:00
// didn't find anything there btw
2023-07-25 02:08:15 -04:00
// pretty hopeless to try to recreate the pulsing light
2024-02-21 22:29:47 -05:00
// ^ a gif would have worked lel
// ^ but, again, artistry
2023-07-25 01:41:07 -04:00
2024-02-21 22:29:47 -05:00
import {
DragResizableImage ,
HomestuckSpan ,
Main ,
render_and_copy ,
static_url ,
} from "./common.tsx" ;
2023-07-25 01:41:07 -04:00
2024-02-21 22:29:47 -05:00
// DONE: rip a hole in the panel (for blood on back)
2023-07-25 01:41:07 -04:00
render_and_copy (
2023-07-25 02:08:15 -04:00
< div
style = { {
2023-07-25 02:21:23 -04:00
background : ` url( ${ static_url ( "incipisphere-thingie.png" ) } ) fixed ` ,
2023-07-25 02:26:51 -04:00
width : "fit-content" ,
2023-07-25 02:08:15 -04:00
display : "grid" ,
overflow : "hidden" ,
gridTemplateRows : "1fr" ,
} }
>
2024-02-21 22:29:47 -05:00
< DragResizableImage
url = { static_url ( "homestuck-3853-egbertful.png" ) }
width = { 650 }
height = { 650 }
top = { 0 }
left = { 0 }
indicator_opacity = { 0.6 }
/ >
2023-07-25 01:53:47 -04:00
< img
id = "panel"
src = { static_url ( "homestuck-3853-transparent-egbertless.png" ) }
2023-07-25 02:21:23 -04:00
alt = "part of page 3853 of homestuck. rose lalonde, wearing a black dress with a pinkish-purple sash and a green communicator on her head, is lying incapicitated on the grey ground. a pool of blood is collecting, with an incisphereish thingie showing through it. there is a blue, partially sloppily clone-stamped void with a dark purple horizon above it."
2023-07-25 01:53:47 -04:00
style = { {
2023-07-25 02:08:15 -04:00
gridArea : "1/1" ,
margin : 0 ,
aspectRatio : 1 ,
2023-07-25 01:53:47 -04:00
} }
/ >
2024-02-21 22:29:47 -05:00
{ / * < i m g
2023-07-25 01:53:47 -04:00
id = "egbert"
src = { static_url ( "homestuck-3853-egbertful.png" ) }
2023-07-25 02:21:23 -04:00
alt = "part of page 3853 of homestuck. egbert's silhouette with colorful tendrils all around it and a patch of blood that also shows the incipisphereish thingie."
2023-07-25 02:08:15 -04:00
style = { {
gridArea : "1/1" ,
margin : 0 ,
aspectRatio : 1 ,
transform : "translateY(-0.15rem)" ,
animation : "0.15s infinite alternate-reverse linear spin" ,
} }
2024-02-21 22:29:47 -05:00
/> */ }
< div style = { { backgroundColor : "white" } } >
basically , { " " }
< a href = "https://developer.mozilla.org/en-US/docs/Web/CSS/background-attachment" >
background - attachment : fixed
< / a > { " " }
+ some < a href = "https://photopea.com" > photopea < / a > fun { " " }
< HomestuckSpan color = "#008282" > : ] < / HomestuckSpan >
< / div >
2023-07-25 02:08:15 -04:00
< / div >
2023-07-25 01:41:07 -04:00
) ;