PSD 到 HTML(带文本)转换

发布于 2024-07-15 06:07:23 字数 869 浏览 11 评论 0原文

我刚刚下载了一个 .PSD 格式的网站模板。 我已经通过 Photoshop 进行了更改,设置了拼接,然后单击“保存为网络设备”。

我导出网站并获得图像目录和 html 文件。 到目前为止一切都好。

接下来我使用 Dreamweaver 打开 html 文件。

我的问题是创建网站文本内容的最佳方法是什么。 这些图像全部嵌入在表格的一部分,即

<tr>
    <td colspan="2" rowspan="8">
    <img src="images/storage.jpg" width="28" height="118" alt=""></td>
    <td colspan="4" rowspan="5">
    <img src="images/index_39.jpg" width="125" height="75" alt=""></td>
    <td colspan="4" rowspan="8">
    <img src="images/storage-41.jpg" width="81" height="118" alt=""></td>
    <td>
    <img src="images/spacer.gif" width="1" height="3" alt=""></td>
</tr>

我将图像设置为表格元素的背景,但是我想知道创建文本的最佳方法是什么,即在表格或 div 等中创建表格?
我对 css 不太了解,所以如果您有一个例子,我将不胜感激

另外,是否有工具/网站可以自动为您执行此操作?

谢谢

I just downloaded a website template that is in a .PSD form. I have made the changes via photoshop, setup the splices then clicked "Save for web devices".

I export the website and I get the images directory and the html file. All ok so far.

I next open the html file using dreamweaver.

My question is what is the best method to create the text content of the site. The images are all embedded at part of a table i.e.

<tr>
    <td colspan="2" rowspan="8">
    <img src="images/storage.jpg" width="28" height="118" alt=""></td>
    <td colspan="4" rowspan="5">
    <img src="images/index_39.jpg" width="125" height="75" alt=""></td>
    <td colspan="4" rowspan="8">
    <img src="images/storage-41.jpg" width="81" height="118" alt=""></td>
    <td>
    <img src="images/spacer.gif" width="1" height="3" alt=""></td>
</tr>

I set the image as the background to the table element however I am wondering what would be the best method for creating the text i.e. create a table in a table, or div etc?
I dont know too much about css so if you have an example I would be grateful

Also, are there are tools / websites out there that does this automatically for you?

Thanks

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

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

发布评论

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

评论(3

安人多梦 2024-07-22 06:07:23

您的模板仅附带 PSD 文件吗?

通常,PSD 文件允许您编辑图形部分,然后保存所需的图像,然后将其放回 HTML 中,而不是直接从 PSD 生成 HTML。

既然您询问了最佳方法,我将根据我的意见给您答案。

使用表格进行布局并不是设计网页的好方法。

表格应该用于表格数据。

您应该将内容放在 HTML 中,并使用 CSS 进行布局/演示。

如果你想学习 CSS,我建议如下:

如果您有 Mac,我强烈建议您下载并尝试 CSSEdit。 对于 PC,Visual Studio 2008 也有一个很好的 CSS 编辑器。

Did your template only come with a PSD file?

Typically, the PSD file allows you to edit the graphical portion, then save off the images you need, to be placed back in HTML, rather than generating HTML directly from the PSD.

Since you asked for the best way to do this, I will give you my answer based on my opinion.

Using tables for layout is not a good way to design webpages.

Tables should be used for tabular data.

You should place content in HTML, and use CSS for layout/presentation.

If you want to learn about CSS, I suggest the following:

If you have a Mac, I highly recommend downloading and trying out CSSEdit. For a PC, Visual Studio 2008 has a nice CSS editor as well.

在梵高的星空下 2024-07-22 06:07:23

我认为从 Photoshop 开始创建网站并不是最好的方法,正如您从标记中看到的那样。 首先学习一些简单的教程,让自己了解基本的 html 元素,以及创建网站样式的主要标记(通常使用 div 元素)。 之后,您可以手动输入所需的图形。 这最终会产生一个更易于维护的网站。

I think starting with Photoshop to create a website isnt the best way, as you can see by your markup. Start by picking up some simple tutorials, making your self knowing the basic html elements, also for creating the main markup for site style (often with div elements). After this you enter your desired graphics by hand. This ends in a lot more maintainable website.

﹂绝世的画 2024-07-22 06:07:23

如果您不想了解详细信息,可以将您的 psd 发送到诸如 http://www.psd2html.com/ 之类的服务。 他们这样做是为了钱...

If you dont wanna get in details, you can send your psd to a service like http://www.psd2html.com/. They do it for money...

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