ASP.NET自动设置水平滚动条居中

发布于 2025-01-05 17:06:06 字数 133 浏览 1 评论 0原文

我正在使用 VS2010,C# 开发 ASP.NET Web 应用程序,我的页面包含宽图像,因此用户通常会看到水平滚动条,但我希望此滚动条自动水平居中,以便我的用户始终默认情况下查看图像和整个屏幕居中,有什么办法可以做到这一点吗?

谢谢

I'm using VS2010,C# to develop an ASP.NET web app, my page contains a wide image, so that users will usually see a horizontal scrollbar, but I want this scroll bar to be automatically placed centered horizontally so that my user always views the image and the whole screen in center by default, is there any way to do so?

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦幻的心爱 2025-01-12 17:06:06

试试这个

var img = document.getElementById('imageid');  //or however you get a handle to the IMG 
var width = img.clientWidth; 
var height = img.clientHeight; 

// Jquery
$("div.demo").scrollLeft(width/2); 

Try This

var img = document.getElementById('imageid');  //or however you get a handle to the IMG 
var width = img.clientWidth; 
var height = img.clientHeight; 

// Jquery
$("div.demo").scrollLeft(width/2); 
或十年 2025-01-12 17:06:06

检查这个...您需要为滚动条创建自定义脚本

自定义滚动条

Check this... you would need to create custom script for your scroll bar

Custom Scroll Bar

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文