"poem"

1
2
3
4
5
6
7
8
9

Photoshop and the art of manufacturing gold:

It’s said that a picture is worth a thousand words, which is already a lot. Let me tell you, in today’s visual culture you need pics, or it didn’t happen … But what if it really has not happened (yet)—or you can’t find the good picture? Well my friend, that where digital arts, and especially Photoshop come in. Using these 10 steps you will soon have the skills to make any image your heart desires. And remember, a really good image is worth its file-size in gold. Ready? Okay then, let’s get exploring!

1
2
3
4
5
6
7
8
9


$(document).ready(function() { $("#cell8").hover(function() { var src = $('#myimage').attr('src'); $("#myimage").fadeIn(3000); //if the current image is picture1.png, change it to picture2.png if(src == 'https://images.squarespace-cdn.com/content/v1/5320ee57e4b053c8aceb664e/1625339288916-ZPRYZL2JGVL8XNKAMZVE/Asset+14.png') { $("#myimage").attr("src","https://images.squarespace-cdn.com/content/v1/5320ee57e4b053c8aceb664e/1625341007429-ECT5KG2NKB888Y3AT8ZI/Asset+15.png"); //if the current image is anything else, change it back to picture1.png } else console.log("Src is: " + $("#myimage").attr("src")); }) });

Comment