<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>左侧列表和右侧功能显示</title> <style> .container { display: flex; width: 1175px; height: calc(100vh - 10px); /* 设置内容区域高度为视口高度减去10px */ border: 1px solid #ccc; overflow: hidden; } .sidebar { flex: 1; background-color: #f0f0f0; padding: 20px; border-right: 1px solid #ccc; overflow-y: auto; } .main-content { flex: 3; padding: 20px; overflow-y: auto; /* 如果内容过多,可以允许内容区域滚动 */ } .sidebar ul { list-style-type: none; padding: 0; } .sidebar li { margin-bottom: 10px; cursor: pointer; } .sidebar li:hover { color: #007bff; } .selected { color: #007bff; font-weight: bold; } </style> </head> <body> <div> <div> <ul> <li onclick="showContent('option1')">地理</li> <li onclick="showContent('option2')">化学</li> <li onclick="showContent('option3')">历史</li> <li onclick="showContent('option4')">生物</li> <li onclick="showContent('option5')">数学</li> <li onclick="showContent('option6')">物理</li> <li onclick="showContent('option7')">音乐</li> <li onclick="showContent('option8')">英语</li> <li onclick="showContent('option9')">语文</li> <li onclick="showContent('option10')">政治</li> <!-- 添加更多选项 --> </ul> </div> <div id="mainContent"> <h>请选择</h> </div> </div> <script> function showContent(option) { // 清除所有选项的样式 var lis = document.querySelectorAll('.sidebar li'); lis.forEach(li => {- li.classList.remove('selected'); }); // 添加选中选项的样式 var selectedLi = document.querySelector(`.sidebar li:nth-child(${option.slice(-1)})`); selectedLi.classList.add('selected'); // 根据选项显示对应的内容 var mainContent = document.getElementById('mainContent'); mainContent.innerHTML = getOptionContent(option); } function getOptionContent(option) { switch(option) { case 'option1': return '<iframe src="地理" width="100%" height="600px"></iframe>'; case 'option2': return '<iframe src="化学" width="100%" height="600px"></iframe>'; case 'option3': return '<iframe src="历史" width="100%" height="600px"></iframe>'; case 'option4': return '<iframe src="生物" width="100%" height="600px"></iframe>'; case 'option5': return '<iframe src="数学" width="100%" height="600px"></iframe>'; case 'option6': return '<iframe src="物理" width="100%" height="600px"></iframe>'; case 'option7': return '<iframe src="音乐" width="100%" height="600px"></iframe>'; case 'option8': return '<iframe src="英语" width="100%" height="600px"></iframe>'; case 'option9': return '<iframe src="语文" width="100%" height="600px"></iframe>'; case 'option10': return '<iframe src="政治" width="100%" height="600px"></iframe>'; } } </script> </body> </html>
css教程
css左侧列表和右侧显示效果代码
css教程
我的站长站
2024-08-07
共8人阅读
上一篇:css修改滚动条样式教程
最新更新
-
01css3 transfrom:translate元素居中 4周前
-
02Font Awesome图标库使用方法和CDN公共库分享 1个月前
-
03tailus免费开源的专业网页UI库 1个月前
-
04CTRL+D添加收藏效果CSS代码 2个月前
-
05利用tailwindcss-highlights给文字添加高亮效果 2个月前
热门推荐
-
01为什么bootstrap国内很少人使用 771热度
-
02IE不显示加载iconfont阿里巴巴图标的解决方法 431热度
-
03CSS文字超出省略号显示 343热度
-
043段h1标题CSS美化代码 275热度
-
05CSS定位控制上下左右坐标教程 272热度