如何在图像周围创建导航菜单

时间:2022-11-19 23:35:36

如何在图像周围创建导航菜单

I have a heart and I need to construct the menu around that heart on both sides I have over 27 menu items. I need it to be mobile friendly. Please any help?

我有一颗心,我需要在两侧构建菜单,我有超过27个菜单项。我需要它适合移动设备。请帮忙吗?

1 个解决方案

#1


0  

You can use the transforms declarations of css to rotate the <span> of text.

您可以使用css的变换声明来旋转文本的

http://www.w3schools.com/cssref/css3_pr_transform.asp

span#menu1 {
    -ms-transform: rotate(7deg); /* IE 9 */
    -webkit-transform: rotate(7deg); /* Chrome, Safari, Opera */
    transform: rotate(7deg);
}

#1


0  

You can use the transforms declarations of css to rotate the <span> of text.

您可以使用css的变换声明来旋转文本的

http://www.w3schools.com/cssref/css3_pr_transform.asp

span#menu1 {
    -ms-transform: rotate(7deg); /* IE 9 */
    -webkit-transform: rotate(7deg); /* Chrome, Safari, Opera */
    transform: rotate(7deg);
}