我希望在我的艺术家网站上访问者从这里开始 页面的中心。
由于网站很大并且有实验内容, 游客应自行决定哪个方向 他们想要在网站上移动。页面的内容 在左右以及上下都是 已部分可见。
因此,页面应滚动到水平和 装载时的垂直中心。
答案 0 :(得分:0)
将下面的脚本标记部分添加到html页面的head标记部分,然后在你的body元素上,你可以添加属性onload并使其等于你滚动的函数名称,我会这样做很多不同但由于你没有经验编码,我会推荐这种简单的方法。
#init class_info outside of the loop
class_info = {
'Sub Type': [],
'Sch Name': [],
'High Amount': [],
'Roll Number': [],
}
for i in class_details:
class_info['Sub Type'].append(i.sub_type)
class_info['Sch Name'].append(i.name)
class_info['High Amount'].append(i.highestscore)
class_info['Roll Number'].append(i.subnumber)
return class_info