S
S
SolidSnake132020-04-19 15:43:22
css
SolidSnake13, 2020-04-19 15:43:22

How to implement background movements behind the cursor?

How to implement background movements behind the cursor? I need this behavior of the background:

https://github.com/user-doesnt-exist/page-doesnt-exist

It is important for me to understand in the direction of which events, methods, etc. look. I want to implement this in plain JS.

Answer the question

In order to leave comments, you need to log in

10 answer(s)
R
RomanKudlatov, 2020-04-19
@SolidSnake13

I couldn’t open the example, but I threw something, as I understand it, do I need to make a semblance of parallax? Only for bg in styles you need to set position

var bg = document.querySelector("#bg");

window.onmousemove = e => {
  x = e.offsetX;
  y = e.offsetY;

  bg.style.left= x/30+"px"
  bg.style.top= y/30+"px"
}

A
antonlustin, 2011-12-07
@greyhard

http://social.wakoopa.com/

T
tob, 2011-12-07
@tob

What was on Habré is http://motivateclock.ru/

L
laperar, 2020-11-26
@laperar

It looks like it's about the JETLOGGER program
overview.png
websites.png

L
Limosha, 2011-12-07
@Limosha

Perhaps a little bit wrong (does not make screenshots) - time counts, there is a division into projects and tasks. Formerly called iClockr, now called Luminia. Unfortunately, only for poppy.
www.kedisoft.com/iclockr/

O
olekl, 2011-12-07
@olekl

manictime, only it only stores data locally, you can’t look through the site.

U
UseRifle, 2011-12-07
@UseRifle

toggl.com

A
Avdenago, 2011-12-07
@Avdenago

Two programs helped me.
1. RescueTime - www.rescuetime.com/
which is good: sends a report every week. takes up little memory and is invisible, you can configure which application is useful and which is destructive.
cons: rather roughly tracks time in applications.
However, it helps to understand the overall picture, a paid subscription is not required, it’s even better without it.
2. ManicTime - www.manictime.com/
which is good: keep track of all time in great detail.
cons: more cumbersome application, eats more memory.
It helps a lot to track individual tasks, shows the whole picture of the day. Good functionality in the basic version.

U
undermi, 2016-09-26
@undermi

Has anyone tried CrocoTime?
There is also an online solution for business www.carlabella.com/ru/carla-time , it is not clear who implements it

A
Alexander Mineev, 2019-02-19
@itvsem

I strongly recommend Kickidler
5c6c166747e02585960059.jpeg

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question