Creating CSS Buttons (一)

亚历山大大帝x

亚历山大大帝x

2016-02-19 18:32

想要天天向上,就要懂得享受学习。图老师为大家推荐Creating CSS Buttons (一),精彩的内容需要你们用心的阅读。还在等什么快点来看看吧!

  Introduction
Being able to successfully navigate a Web site is an important metric in measuring a site''s usability. To assist with navigation, many Web sites use graphical buttons (usually GIF files). While these buttons are not terribly difficult to create with a decent image editor, they can be a bit burdensome when all you have at your disposal is Microsoft Paint. Furthermore, while graphical buttons do not add that much size to the page, the bandwidth requirements do add up, resulting in slower loading pages for your users.

One solution is to use cascading style sheets (CSS) to create buttons. Using CSS, you can create buttons with just a few lines of plain text HTML and CSS tags! (To learn more about CSS, be sure to check out these links.) The downside of using CSS to generate buttons is that the buttons look less professional (in my opinion) and that they can only be rendered on CSS-compliant browsers. For the examples we''ll be looking at in this article, they are functional in both IE 5.0+ and Netscape 6.1+. Certain "extra" features, which we''ll be sure to note, only work in IE.

Creating CSS Buttons
The idea for creating CSS buttons was shamelessly borrowed from the book: Web Design: The Complete Reference. This book presented some code that could be used to generate a button using style sheets. The below code shows a simple example:

% '' Define the stylesheet %
STYLE TYPE="text/CSS"
!--
#mybutton   {border-style: inset;
        border-color: #ff6633;
        background-color: #CC3300;
        text-decoration: none;  
        width: 80px;
        text-align: center;}
 
  A.buttontext {color: white;
                text-decoration: none;  
                font: bold 12pt Verdana;
                cursor: hand;}
--
/STYLE

% '' Create the button %
A HREF="http://www.yahoo.com/" CLASS="buttontext"
DIV ID="mybutton"
Yahoo!
/DIV/A

Here you can see the above code in action. Go ahead and click the button, if you like, you''ll be instantly wisked away to Yahoo!:

Yahoo
Creating Responsive Buttons
In the above example we used two style sheet items: a mybutton ID and a buttontext class for use in the A tag. Let''s create a new class, buttonover, that can be used to highlight the color of the button when the mouse is over it. (Note that this feature will only work in Internet Explorer.)

(本文来源于图老师网站,更多请访问https://m.tulaoshi.com/webkaifa/)

To accomplish this, first create another class in the style tag:

% '' Define the stylesheet %
STYLE TYPE="text/CSS"
!--
#mybutton   {border-style: inset;
        border-color: #ff6633;
        background-color: #CC3300;
        text-d

CSS教程是:Creating CSS Buttons (一)。ecoration: none;  
        width: 80px;
        text-align: center;}
 
  A.buttontext {color: white;
                text-decoration: none;  
                font: bold 12pt Verdana;
                cursor: hand;}

  .buttonover  {color: yellow;
                text-decoration: none;
                font: bold 12pt Verdana;
                cursor: hand;}
--
/STYLE

We want our button to use this new class when the mouse is moved over the button, and to use the buttontext class when the mouse leaves the button. Therefore, we''ll use the onMouseOver and onMouseOut events for the A tag:

A HREF="http://www.yahoo.com/" CLASS="buttontext"
   onMouseOver="this.className=''buttonover'';"
   onMouseOut="this.className=''buttontext'';"
DIV ID="mybutton"
Yahoo
/DIV/A

(本文来源于图老师网站,更多请访问https://m.tulaoshi.com/webkaifa/)

Below you can see a live demo of this. If you are using IE, go ahead and move your mouse over the button. Neat, eh?

Yahoo
Where to Go from Here
You may be wondering why in the world there''s a CSS article here on 4Guys, and how this relates to ASP. Well, obviously it doesn''t... yet. I decided to write this article for two reasons: one, I think it is neat, espcially since I don''t have any fancy-shmancy image editors to create professional looking buttons; second, I will tie this into ASP in a future article. If you''re at all like me, then you love ASP and server-side programming, but client-side programming and HTML really ain''t your thang. So, to compensate for this, I''ve created a VBScript class that generates all of the needed style sheets and HTML for generating buttons. Using the class is simple: specify the name of the button, its UI elements (background color, font information, width, etc.), the text of the button, and the URL the button should lead to when clicked, and the class automagically generates all the needed CSS and HTML markup. For more information on this class, be sure to read: A CSS Button Creation Class.

Happy Programming!

展开更多 50%)
分享

猜你喜欢

Creating CSS Buttons (一)

Web开发
Creating CSS Buttons (一)

Creating CSS Buttons (二)

Web开发
Creating CSS Buttons (二)

s8lol主宰符文怎么配

英雄联盟 网络游戏
s8lol主宰符文怎么配

Creating GUIDs in c#

电脑网络
Creating GUIDs in c#

Creating a OpenBSD 3.5 bootable CD

Linux Linux命令 Linux安装 Linux编程 Linux桌面 Linux软件 Linux内核 Linux管理
Creating a OpenBSD 3.5 bootable CD

lol偷钱流符文搭配推荐

英雄联盟 网络游戏
lol偷钱流符文搭配推荐

精通 CSS 滤镜(一)

Html CSS布局 Div+CSS XHTML
精通 CSS 滤镜(一)

玩转CSS CSS精彩实例教程(一)

Web开发
玩转CSS CSS精彩实例教程(一)

lolAD刺客新符文搭配推荐

英雄联盟
lolAD刺客新符文搭配推荐

CSS文本:layout-grid-type

CSS文本:layout-grid-type

大型ORACLE数据库优化设计方案

大型ORACLE数据库优化设计方案
下拉加载更多内容 ↓