最終効果:
放射状メニューを作成する前に、まずいくつかの知識ポイントを知っておく必要があります:
Math.sin(x) x の正の値。戻り値は -1.0 から 1.0 までです。
Math.cos(x) x のコサイン値。 -1.0 から 1.0 までの数値を返します。これら 2 つの関数の X は、「角度」ではなく「ラジアン」を指します。ラジアンの計算式は、2*PI/360*角度であり、js を使用して次のように表されます: Math.PI/180* Degree (1 度)。 = 180/Math.PI)
例: 30° 角度 (ラジアン) = 2*PI/360*30
円上の任意の点の座標を計算する方法 (円に対するサブメニューの位置を計算するために使用されます)
親コンテナの左上隅を点として使用して、座標系を確立します
コードは次のとおりです:
<!DOCTYPE html> <html lang="zh-cn"> <head> <title>径向菜单的制作</title> <meta charset="utf-8"/> <meta name="keywords" content="" /> <meta name="description" content="" /> <script type="text/javascript" src="jquery.js"></script> <!--此处需引入jquery文件--> <style type="text/css"> * { margin: 0; padding: 0; } body { background-color: #292a38; font-family: "Microsoft Yahei"; } h1 { margin-top: 20px; text-align: center; color: #fff; } .navWrap { position: relative; width: 200px; height: 200px; margin: 50px auto; border: 2px dotted #4e5061; border-radius: 50%; } .navWrap .main-nav { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);/*分别向左上移动元素对象的50%,保证居中*/ width: 40px; height: 40px; line-height: 40px; font-size: 12px; text-align: center; text-decoration: none; color: #fff; border-radius: 3px; text-shadow: 1px 1px 0px #000; background: #15a5f3; cursor: pointer; } .navWrap nav { position: absolute; width: 100%; height: 100%; transform: scale(0); transition: all 0.5s ease-out; opacity: 0; } .navWrap.active nav { transform: scale(1); opacity: 1; } .navWrap nav > a{ position: absolute; width: 30px; height: 30px; background: #f44283; text-align: center; line-height: 30px; text-decoration: none; color: #fff; border-radius: 3px; text-shadow: 1px 1px 0px #000; transform: translate(-50%,-50%); } </style> </head> <body> <h1>径向动画菜单效果演示</h1> <div class="navWrap"> <nav> <a>1</a> <a>2</a> <a>3</a> <a>4</a> <a>5</a> <a>6</a> <a>7</a> <a>8</a> </nav> <a class="main-nav">点我</a> </div> <script type="text/javascript"> $(document).ready(function() { var isLocated = false; //防止重复初始化子菜单位置 $(".navWrap").on('click', '.main-nav', function(event) { event.preventDefault(); var me = $(this); var navWrap = me.closest('.navWrap'); var nav = navWrap.find('nav a'); if(!navWrap.hasClass('active')&&!isLocated){ //Y=R+Rsinθ //X=R+Rcosθ var r = navWrap.width()/2; var startAngle =0, endAngle=360; //可以通过改变角度,做出各种各样的径向菜单 //子菜单的夹角 var total = nav.length; var gap = (endAngle - startAngle)/total; //角度->弧度 var radian = Math.PI/180; /* * 计算并确定各个子菜单的最终位置 */ $.each(nav,function(index, el) { // 当前子菜单与x轴正向的夹角 θ (角度->弧度) var myAngle = (startAngle + gap*index) * radian; // θ var x = r+r*Math.cos(myAngle),//myAngle为弧度 y = r+r*Math.sin(myAngle); // 设置当前子菜单的位置 (left,top) = (x,y) $(this).css({ left: x + 'px', top: y + 'px' }); }); isLocated = true; } navWrap.toggleClass('active'); }); }) </script> </body> </html>