« SpaceHey Forum

Looking for layout overlays 👀

I’m wondering if there r any layouts that put an old tv style overlay so it has those moving horizontal bar thingies?? I’m new here lol


Report Topic

1 Reply

Reply by RATT

posted

Same, legit was scrolling forms for this reason.

I didn't find a perfect thing I was looking for but this overlays the background at least, maybe if i tweak something it'll go overtop everything?

img of profile


<!-- Add style bracket -->

html:before {

  animation: grain 8s steps(10) infinite;

  background-image: url(https://i.pinimg.com/originals/69/a7/45/69a74507bc938244fcd6327bf6266589.jpg);

  content: "";

  height: 300%;

  left: -50%;

  opacity:.2;

  position: fixed;

  top: -110%;

  width: 300%;

  pointer-events:none;

}

@keyframes grain

  70% { transform:translate(0%, 15%) }

}

</style>


Permalink Report Reply