使用滑动门 CSS 的输入按钮

发布于 2024-09-08 05:06:31 字数 864 浏览 3 评论 0 原文

此圆形按钮样式专为 等输入按钮设计,使用 滑动门 由单个图像组装而成的技术。

演示:点击查看源代码并演示实际代码
演示:点击查看 Mac 浏览器中该样式的视频演示:Firefox、Safari、Chrome 和 Opera

此按钮样式可实现以下功能:

  • 解决长时间按钮过宽的问题 IE 浏览器的按钮名称。
  • 解决了当按钮隐藏在服务器端时右滑动门部件会浮动在页面上时 IE 浏览器的问题。
  • 解决 IE 浏览器的文本碎片问题 向下滚动然后返回页面时。
  • 这是完美的替代方案 当您无法使用 ASP 时,设计师 .Net按钮控件如 在您的代码中
  • 交叉兼容 适用于 Safari、ie、firefox、chrome 和 歌剧。 观看视频

Designed specifically for input buttons such as <input type="submit" value="Button Name">, this round button style uses the sliding doors technique that's assembled from a single image.

Demo: Click to review the source code and demo the code in action

Demo: Click to see a video demo of the style in Mac browsers: Firefox, Safari, Chrome and Opera

This button style enables the following:

  • Resolves wide button issue for long
    button names for IE browsers.
  • Resolves an issue with IE browsers when the right sliding door piece would float on the page when the button is hidden server side.
  • Resolves fragmented text issue for IE browsers
    when scrolling down and then back up the page.
  • This is the perfect alternative for
    designers when you can't use the ASP
    .Net button control such as
    <asp:Button id="b1" Text="Submit"
    runat="server" />
    in your code
  • Cross compatible
    for safari, ie, firefox, chrome and
    opera. watch video

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

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

发布评论

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

评论(1

那伤。 2024-09-15 05:06:31

我认为你只需要改变一个伪类。

span.button input.form_button:hover {
  background-position:left -39px;
  color:#FFFFFF;
}

应该

span.button:hover input.form_button {
  background-position:left -39px;
  color:#FFFFFF;
}

编辑:这是演示源代码的第 52 行

I think you just need to change one pseudo-class.

span.button input.form_button:hover {
  background-position:left -39px;
  color:#FFFFFF;
}

Should be

span.button:hover input.form_button {
  background-position:left -39px;
  color:#FFFFFF;
}

Edit: It's line 52 of the demo source

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