>greentext in title
Oct 5 at 17:11:27 in ???
| [RSS Feed]
| Anonymous
- Oct 5 at 17:11:27
| #51881 |
testt>greentext in title
>greentext in title
| admin ## ADMIN
- Oct 5 at 17:13:51
| #51882 |
Yes, it is lovely.
This is a high trust society and I think I'd rather ban people for abusing HTML rather than restricting the entire thing, so it will stay.
| Anonymous
- Oct 6 at 02:30:10
| #51888 |
ok dude
| Anonymous
- Oct 6 at 02:50:48
| #51890 |
This is a test
overlay
<script>
const stage = document.getElementById('stage');
const box = document.createElement('div');
box.className = 'box';
stage.appendChild(box);
let x = 20, y = 20;
let vx = 3.5, vy = 2.7;
function step(){
const w = stage.clientWidth;
const h = stage.clientHeight;
x += vx;
y += vy;
// bounce on edges
if (x <= 0) { x = 0; vx = Math.abs(vx); }
if (y <= 0) { y = 0; vy = Math.abs(vy); }
if (x + box.offsetWidth >= w) { x = w - box.offsetWidth; vx = -Math.abs(vx); }
if (y + box.offsetHeight >= h) { y = h - box.offsetHeight; vy = -Math.abs(vy); }
box.style.transform = `translate(${x}px, ${y}px)`;
requestAnimationFrame(step);
}
requestAnimationFrame(step);
box.addEventListener('click', () => {
box.style.background = '#' + Math.floor(Math.random()16777215).toString(16).padStart(6,'0');
vx = 1.1; vy *= 1.1;
});
</script>
| Anonymous [Tor]
- Oct 6 at 07:37:01
| #51893 |
>overlay
You got me
This is a test
<img src="http://example.org/">
| Anonymous [Tor]
- Oct 6 at 07:43:37
| #51894 |
>image
Please fix. In case it isn't clear why that's a problem, it would allow Eve to get a ping everytime someone loads the page. Think of Facebook pixel.
| Anonymous
- Oct 26 at 13:46:12
| #52534 |
<html>
<head>
<style>
body {
position: relative;
margin: 0;
}
iframe, div, a {
border: none;
position: absolute;
width: 100%;
height: 100%;
}
div {
z-index: 100;
}
a {
display: block;
}
</style>
</head>
<body>
<iframe src="www.kittens.com/vacuum-revenge">
</iframe>
</body>
</html>
|