Heim > Artikel > Web-Frontend > Beispiel-Tutorial zum Scrollen des Inhaltsbereichs auf einem mobilen Endgerät
自己的总结的一些方法,如果有什么新的好的方法希望能够交流:
1.给定位(导航栏)(底部)
nav{
position:fixed;
top:0rem;
};
footer{
position:fixed;
bottom:0rem;
};
但是这个方法会有弊端,在你给nav设置定位时,内容区域就会顶头出现,就需要给内容区域设置定位设置top值nav的高度方可。
2.使用IScroll插件。
例如:
3.第三那种弹性盒子:弊端(会改变nav的高度);
如果还有其他好的方法,希望能一起交流;
Das obige ist der detaillierte Inhalt vonBeispiel-Tutorial zum Scrollen des Inhaltsbereichs auf einem mobilen Endgerät. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!