代码拉取完成,页面将自动刷新
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- 引入 Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<style media="screen">
.row {
margin-right: 0px;
margin-left: 0px;
}
.drug-big-box{
margin: 10px 0px 0px 0px;
padding: 0 15px 0 15px;
height:600px;
background: white;
overflow:hidden;
}
.drug-big-box-auto{
margin: 10px 0px 0px 0px;
padding: 0 15px 0 15px;
height:auto;
background: white;
}
.drug-small-box{
margin: 0px;
border-bottom:2px solid #f5f5f5;
padding: 15px 0px 15px 0px;
}
.drug-title{
color: #999;
font-size: 14px;
}
.drug-txt{
color: #333;
font-size: 14px;
margin:10px 10px 0px 10px;
height: auto;
overflow: hidden;
}
.drug-more{
background:white;
text-align: center;
padding: 0 15px 0 15px;
margin:0 0 30px 0;
color:#333;
font-size:14px;
}
/* 滚动条框设置 */
*::-webkit-scrollbar {
width: 7px;
border-radius:3px;
}
/* 滚动条设置 */
*::-webkit-scrollbar-thumb {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
background-color: #555;
}
.goTop {
height: 40px;
width: 40px;
background: #000000;
border-radius: 0px;
position: fixed;
top: 90%;
right: 3%;
display: none;
padding: 10px;
text-align: center;
}
.goTop span {
color: #fff;
}
</style>
</head>
<body style="background:#f5f5f5">
<div class="container col-xs-12 col-sm-8 col-sm-offset-2">
<!--头部开始-->
<header class="row" style="padding-bottom: 10px;background:#f5f5f5;">
<nav class=""style="text-align:center; padding: 10px;">
<div class="col-xs-4 col-xs-offset-4" style="font-size: 20px;">
<a href="index.html" style="text-decoration:none;color:#333;">医疗问答</a>
</div>
<div class="col-xs-1 col-xs-offset-3">
<img src="images\user.png" style="width:28px; height:28px;">
</div>
</nav>
</header><!--头部结束-->
<!--药物详细信息开始-->
<div class="row drug-big-box">
<!--通用名称-->
<div class="row drug-small-box">
<div class="row drug-title">通用名称</div>
<div class="row drug-txt" id="drug"></div>
</div><!--通用名称-->
<!--功能主治-->
<div class="row drug-small-box">
<div class="row drug-title">功能主治</div>
<div class="row drug-txt" id="func"></div>
</div><!--功能主治-->
<!--用法用量-->
<div class="row drug-small-box">
<div class="row drug-title">用法用量</div>
<div class="row drug-txt" id="usage"></div>
</div><!--用法用量-->
<!--剂型-->
<div class="row drug-small-box">
<div class="row drug-title">剂型</div>
<div class="row drug-txt" id="form"></div>
</div><!--剂型-->
<!--成份-->
<div class="row drug-small-box">
<div class="row drug-title">成份</div>
<div class="row drug-txt" id="component"></div>
</div><!--成份-->
<!--不良反应-->
<div class="row drug-small-box">
<div class="row drug-title">不良反应</div>
<div class="row drug-txt" id="effects"></div>
</div><!--不良反应-->
<!--禁忌-->
<div class="row drug-small-box">
<div class="row drug-title">禁忌</div>
<div class="row drug-txt" id="avoid"></div>
</div><!--禁忌-->
<!--注意事项-->
<div class="row drug-small-box">
<div class="row drug-title">注意事项</div>
<div class="row drug-txt" id="matters"></div>
</div><!--注意事项-->
</div><!--药物详细信息结束-->
<div class="row center-text drug-more">
<div style="border-top:2px solid #f5f5f5;padding:15px 0 15px 0">
<span>点击加载更多</span>
</div>
</div>
<div class="goTop">
<span class="glyphicon glyphicon-chevron-up"></span>
</div>
<!--footer开始-->
<footer class="row text-center" style="background:#333; height:50px; color:white;padding:20px">
<p>2020</p>
</footer>
<!--footer结束-->
</div>
</body>
<script type="text/javascript" src="js\info.js"></script>
<script type="text/javascript" src="js/drug.js"></script>
<script type="text/javascript">
drugInfo(drug_info);
</script>
<!--展开更多开始-->
<script type="text/javascript">
var height = true;
$('.drug-more').click(function(){ //点击展开全部
if(height){
$(this).children('div').children('span').text("收起");
$(this).children('div').css("border-top","none");
height = false;
}
else {
$(this).children('div').children('span').text("点击加载更多");
$(this).children('div').css("border-top","2px solid #f5f5f5");
height = true;
}
$(this).prev().toggleClass("drug-big-box drug-big-box-auto");
})
</script><!--展开更多结束-->
<!--返回顶部开始-->
<script type="text/javascript">
function goTop(min_height) {
$(".goTop").click(
function() {
$('html,body').animate({
scrollTop: 0
}, 700);
});
//获取页面的最小高度,无传入值则默认为600像素
min_height=min_height?min_height:400;
//为窗口的scroll事件绑定处理函数
$(window).scroll(function() {
//获取窗口的滚动条的垂直位置
var s = $(window).scrollTop();
//当窗口的滚动条的垂直位置大于页面的最小高度时,让返回顶部元素渐现,否则渐隐
if (s > min_height) {
$(".goTop").fadeIn(100);
} else {
$(".goTop").fadeOut(200);
}
});
}
$(function() {
goTop();
});
</script><!--返回顶部结束-->
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。