[a / b / c / d / e / f / g / gif / h / hr / k / m / o / p / r / s / t / u / v / vg / vm / vmg / vr / vrpg / vst / w / wg] [i / ic] [r9k / s4s / vip] [cm / hm / lgbt / y] [3 / aco / adv / an / bant / biz / cgl / ck / co / diy / fa / fit / gd / hc / his / int / jp / lit / mlp / mu / n / news / out / po / pol / pw / qst / sci / soc / sp / tg / toy / trv / tv / vp / vt / wsg / wsr / x / xs] [Settings] [Search] [Mobile] [Home]
Board
Settings Mobile Home
/sci/ - Science & Math

Name
Options
Comment
Verification
4chan Pass users can bypass this verification. [Learn More] [Login]
File
  • Please read the Rules and FAQ before posting.
  • Additional supported file types are: PDF
  • Use with [math] tags for inline and [eqn] tags for block equations.
  • Right-click equations to view the source.

08/21/20New boards added: /vrpg/, /vmg/, /vst/ and /vm/
05/04/17New trial board added: /bant/ - International/Random
10/04/16New board for 4chan Pass users: /vip/ - Very Important Posts
[Hide] [Show All]


[Advertise on 4chan]


This is animated and be sure to let it loop its the proof and it's ready with Toyobi now.
>>
>>16821496
>>
Another one it's in 2 parts, it's a photon mass generator:
<script>
const centerX = window.innerWidth / 2;
const centerY = window.innerHeight / 2;

const nodes = [];
const nodeCount = 6;

// Create mass nodes
for (let i = 0; i < nodeCount; i++) {
const node = document.createElement('div');
node.className = 'node';
node.style.left = centerX + (Math.random() - 0.5) * 100 + 'px';
node.style.top = centerY + (Math.random() - 0.5) * 100 + 'px';
document.body.appendChild(node);
nodes.push(node);
}

// Recursive branch generator (mass field effect)
function spawnMassBranches(x, y, depth, angle = 0) {
if (depth <= 0) return;
const branch = document.createElement('div');
branch.className = 'branch';
const length = 50 / depth;
branch.style.left = x + 'px';
branch.style.top = y + 'px';
branch.style.height = length + 'px';
branch.style.transform = `rotate(${angle}deg)`;
document.body.appendChild(branch);

const rad = angle * (Math.PI / 180);
const newX = x + Math.sin(rad) * length;
const newY = y - Math.cos(rad) * length;

// Simulate mass pull: slower branching, mirrored angles
spawnMassBranches(newX, newY, depth - 1, angle + 15);
spawnMassBranches(newX, newY, depth - 1, angle - 15);
}

// Start recursive mass field from center
spawnMassBranches(centerX, centerY, 7);

// Optional: slow drift to simulate gravitational pull
function animateNodes() {
nodes.forEach(node => {
const dx = (centerX - parseFloat(node.style.left)) * 0.002;
const dy = (centerY - parseFloat(node.style.top)) * 0.002;
node.style.left = parseFloat(node.style.left) + dx + 'px';
node.style.top = parseFloat(node.style.top) + dy + 'px';
});
requestAnimationFrame(animateNodes);
}
animateNodes();
</script>
>>
>>16821506
Part 2:

<style>
body {
margin: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: #0b0b0b;
overflow: hidden;
font-family: sans-serif;
}

.node {
position: absolute;
width: 18px;
height: 18px;
border-radius: 50%;
background: radial-gradient(circle, #facc15 0%, #ca8a04 80%);
box-shadow: 0 0 12px #fbbf24, 0 0 24px #fbbf24 inset;
animation: pulse 3s infinite alternate ease-in-out;
}

@keyframes pulse {
0% { transform: scale(1); opacity: 0.7; }
50% { transform: scale(1.5); opacity: 1; }
100% { transform: scale(1); opacity: 0.7; }
}

.branch {
position: absolute;
width: 3px;
background: #f59e0b;
transform-origin: top;
opacity: 0.6;
}

</style>
>>
>>16821506
>>16821507
It inhibited the umm.. GOOD LUCK CYA!
>>
>>16821516
BOWTZA.
>>
Meds
>>
Lol it's flattering>>16821516
>>
>>16821518
Cya! WOULDN'T WANNA BE YA! Booooooowoooowoowtzar.
>>
Cock inhibition on wheelchair prisoners now now now..

!


.. Excelsior patients! Spire photo! Vampire blood! Black eyed beings! Shapeshifting! Teleporting!
>>
>>16821529
Boowtsl blitzen bowtza'n bowtz!
>>
>>16821531
E. V. musk rocket mimicry contact distrupt predictor prey sacred geometry umm umm try wigs on umm umm barristers umm umm cops health photo..
>>
>>16821534
Bat cage women slut!
>>
Low and behold an.. Excelsior claimed maidens way.. Get me a fucking ohhh man break danceer maybe to see a spastic ill ask x
>>
>>16821535
Finding Eliza: Power and Colonial Storytelling bowt-wai.... Unified primordial cold genisis.. No wait.. Gregory Mesplie?! Gravity rehab. Haunted swaMáximo César Castellanos



[Advertise on 4chan]

Delete Post: [File Only] Style:
[Disable Mobile View / Use Desktop Site]

[Enable Mobile View / Use Mobile Site]

All trademarks and copyrights on this page are owned by their respective parties. Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.