How do i make multiple tabs to slide to the left side after 5 seconds on the node red dashboard?

@Engineer_M This should do what you want.

[{"id":"c19e8f37b5f344cd","type":"inject","z":"c8c7826a005c7f46","name":"","props":[{"p":"payload"}],"repeat":"5","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":865,"y":450,"wires":[["127af10c4e2da09d"]]},{"id":"127af10c4e2da09d","type":"function","z":"c8c7826a005c7f46","name":"count","func":"msg.payload = (context.get(\"tab\") || 0);\nnode.send(msg);\ncontext.set(\"tab\", ++msg.payload > 6 ? 0 : msg.payload);\n\n\n","outputs":1,"timeout":0,"noerr":0,"initialize":"","finalize":"","libs":[],"x":1010,"y":450,"wires":[["36e28bf4c14e7c1e"]]},{"id":"36e28bf4c14e7c1e","type":"ui_ui_control","z":"c8c7826a005c7f46","name":"","events":"all","x":1155,"y":450,"wires":[[]]}]