I'm looking for a tool which could help me with html map tag. I know I can do it by myself with photoshop and notepad, but it's very laborious. I've investigated image-maps.com but it scales up my image, so the coordinates I put won't fit to my website. Do you know an alternative tools?
Regards,
David
Try dreamweaver.
http://www.adobe.com/products/dreamweaver.html
Related
I'm new to coding/devlopment, and after doing some html and css pages, I realized that I can use html and css to make designs just like photoshop but with code. For example: A div with a height, a width, and a color outline to make a box with an outline.
What I'm trying to do here is save the content of a page (html AND css) in a png or jpeg file to have it the right size and put it as a pc wallpaper.
can you please help me?
I am open to talking on discord with French-speaking people since I use a translator to write in English.
All i can ^^', i ive try to save as .png my html file, put my folder which contain my project on a website who can convert my files to png...
Your request is very open-ended, so I'm not sure we can help you. So I'm gonna try to be as helpful as I can.
As far as I understand, you're designing something with html and css, and then want to save that as an image.
I'm not sure why you can't do that with a simple screenshot (assuming you have an application where you can cut the screenshot as you like).
If not try this app which can help you cut any way:
https://app.prntscr.com/en/index.html
or get the extension in chrome:
https://chrome.google.com/webstore/detail/lightshot-screenshot-tool/mbniclmhobmnbdlbpiphghaielnnpgdp?hl=en
Hope this helps.
I'm learning after effect for animate a typography logo for my website. What format do I have to save and how can I integrate that in the HTML code?
Thanks and sorry for my english.
Ps: if you know better way to animate a font logo it will be appreciated.
Not sure why everyone is downvoting this...
All you need to do is turn your After Effects composition into a gif and place it in an <img> tag. You can search this on Google.
Example: https://cdn.dribbble.com/users/29591/screenshots/2354342/studio.gif
I need to make a webpage where a building can be drawn (in 2D view) using polygons. The best solution would be to embed Google Draw into an HTML page.
How could I do that?
Other solutions are welcome as well.
You could use jquery: http://jsfiddle.net/FlameTrap/CNx8H/
Starting out with a given image, I would like to be able to trace polygons on the image and then export the result as an HTML image map.
What would also be nice is to be able change the scale of an existing image map, thereby changing the size of the polygons and shapes.
Is there a program that anyone knows of that has these features?
Many program do this. It is to time consuming doing complicated maps manually.
I know coffeecup is a used tool for this.
What would also be nice is to be able change the scale of an existing image map ..
I wrote a Javascript image map resizer, it's here. Just paste in your HTML and it will return the scaled image map. You must include "height" and "width" attributes for the original image in the HTML. (This is a quick and dirty tool, it doesn't actually do anything other than parse the HTML you've pasted in. It uses those attributes as the base of calculations).
You may also be interested in my jQuery plugin ImageMapster which can resize image maps dynamically among other things.
I use this site it's fairly good for quickly making image-maps
I use this site https://www.image-map.net/ to trace polygons on the image and then export the result as an HTML image map.
I want to draw geometrical figure in the <textarea> of HTML pages, but I'm facing difficulty in how to do that. Could anyone please tell me?
You can use the HTML5 <canvas> element and its javascript API to draw geometric figures in an HTML document. There are many examples and tutorials of its usage, but here is one I found this morning: Mozilla Canvas Tutorial
You can’t draw in HTML <textarea> elements. You can only put text in them. So the nearest you can get to drawing in them is ASCII art.