Css realizes the effect of unfolding in the middle of the selected bar.

clipboard.png
as shown in the figure, there will be a red bar when selected. If you let the red bar expand from the middle to both sides when selected?

Jun.21,2022

has been solved, key code:

 transform-origin: center center;
  transform: scale3d(0, 1, 0);
  transition: all .5s;

then when the current bar:

 transform: none;
Menu