关于Photoshop的问题... [英] question about photoshop...

查看:68
本文介绍了关于Photoshop的问题...的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在照相馆中有菜单栏

HOME登录注销


我将充当单个图像.


我要如何在visualstudio中处理它,因为我想将Home链接到Home.aspx

登录到login.aspx

注销到logout.aspx

请帮帮我..

谢谢.

I HAVE MENUBAR IN PHOTOSHOP

HOME Login Logout


I will act as a single image.


How i handle it in visualstudio,beacuse i want to give link Home to Home.aspx

Login to login.aspx

Logout to logout.aspx

Please help me..

Thanks.

推荐答案

不要继续提出提出基本相同的新问题( Questions/199910/how-to-add-menubar-in-visual-studio.aspx>如何在Visual Studio中添加菜单栏 [
Don''t keep on creating new questions that ask basically the same thing (how to add menubar in visual studio[^]).

Basically, I understand that you have one image that should represent three links: Home, Login and Logout. To do this, choose one of these approaches:

* Split up the image into three portions, one for Home (called "home.jpg" for example), one for Login (called "login.jpg") and one for Logout ("logout.jpg"). Then create three image hyperlinks, next to each other (or below, whatever makes sense for the image you''re using), like so:
<a href="Home.aspx"><img src="home.jpg" /></a>
<a href="Login.aspx"><img src="login.jpg" /></a>
<a href="Logout.aspx"><img src="logout.jpg" /></a>


将它们放入某种表结构中可能是一个主意.

*使用一张图片,但添加一张图片地图,该图片地图描述了可以点击并链接到其他页面的图片区域,例如:


It might be an idea to put these into a table structure of some sort.

* Use one image, but add an image map that describes areas of the image that can be clicked on and link to other pages, like this:

<img src="MyMenuBar.jpg" width="180" height="20" usemap="#menumap" />
<map name="menumap">
  <area shape="rect" coords="0,0,59,20" href="Home.aspx" alt="Home" />
  <area shape="rect" coords="60,0,119,20" href="Login.aspx" alt="Login" />
  <area shape="rect" coords="120,0,179,20" href="Logout.aspx" alt="Logout" />
</map>


另请参见
http://www.image-maps.com/ [


Also see http://www.image-maps.com/[^]; this seems to be a tool that can do this for you automatically. Note that I haven''t used it myself.


如果您使用Process.Start并传入一个URL,则该URL将在默认浏览器中打开.如果这不是您想知道的,请提供更多详细信息.
If you use Process.Start and pass in a URL, that URL will open in the default browser. IF that''s not what you wanted to know, please provide further detail.


这篇关于关于Photoshop的问题...的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆