[WEB]JustWEB20090629

LINEで送る
[`evernote` not found]

http://abduzeedo.com/awesome-milk-typography-effect-photoshop http://www.webdesignerdepot.com/2009/05/render-a-3d-text-scene-using-photoshop/ http://www.denisdesigns.com/blog/2009/03/3d-text-on-fire/ http://www.digitalartsonline.co.uk/tutorials/index.cfm?featureid=1617 http://psd.tutsplus.com/text-effects-tutorials/design-soft-stylized-3d-type/ http://www.tutorialsphere.com/homemade/design/kaboom-exploding-text/ http://psd.tutsplus.com/designing-tutorials/valentines-day-photoshop-style/ http://www.marcofolio.net/photoshop/glowing_and_sparkling_intense_light_3d_logo.html http://www.marcofolio.net/photoshop/stunning_neon_light_3d_typography.html http://psd.tutsplus.com/tutorials/text-effects-tutorials/create-a-spectacular-grass-text-effect-in-photoshop/ http://abduzeedo.com/hell-tutorial-photoshop http://www.adobetutorialz.com/articles/2978/1/Create-a-Spectacular-Style-Text-Effect http://www.gomediazine.com/tutorials/create-dream-design-3d-typography/ http://www.photoshoproadmap.com/Photoshop-blog/2008/10/31/papercraft-text-effect/ http://10steps.sg/photoshop/create-a-3d-flowery-text-effect/ http://www.minervity.com/features/photoshop/how-to-create-a-realistic-3d-stone-text-effect/ http://www.denisdesigns.com/blog/2009/01/create-3-d-text-with-some-extreme-lighting/ http://www.layersmagazine.com/illustrator-3d-text-effect.html http://pshero.com/archives/transformer-text http://www.digitalartsonline.co.uk/tutorials/index.cfm?featureID=1769 http://www.adobetutorialz.com/articles/3023/1/3D-text-effect---2009 http://psd.tutsplus.com/tutorials/text-effects-tutorials/how-to-create-high-quality-metal-3d-text-in-photoshop/ http://psd.tutsplus.com/tutorials/text-effects-tutorials/how-to-quickly-create-a-stylish-retro-text-effect/
用photoshop做出的3D文字教學

http://viewlike.us/
測試網站在各個解析度螢幕的顯示 – viewlike.us
支援320×396到1920×1200
還有iphone跟Wii的模擬…

富山観光アニメプロジェクト
富士山的卡通宣傳短片
富山観光アニメプロジェクト


用jQuery做出把T-shirt摺好跟展開的效果
How to Make a Threadless Style T-Shirt Gallery
轉貼他的程式碼:
CSS:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
*{
 margin:0;
 padding:0;
 }
 img{
 border: none;
 }
 body {
 text-align: center;
 background: #222;
 }
 h2{
 color: #333;
 font:italic 36px Georgia, serif;
 padding: 20px;
 border-bottom: dashed 1px #999;
 clear: both;
 }
 #content{
 width: 100%;
 margin: 0px auto;
 background: #fff;
 text-align: center;
 margin-bottom: 50px;
 }
 .row{ /*Container for each row of shirts*/
 width: 495px;
 margin: 0px auto;
 clear:both;
 padding: 20px 0;
 }
 .teebox{
 overflow: hidden; /*Prevents excess of image from showing*/
 position: relative;
 margin: 0 10px;
 width: 144px; /*Width and height define thumbnail size*/
 height: 183px;
 float: left;
 clear: right;
 z-index: 0;
 }
 .selected{
 overflow: visible; /*Display part of image that not currently visible*/
 z-index: 10;
 }
 
 .teebox img {
 left:-84px; /*Use this to center your image when not hovered*/
 position: absolute;
 }
 .teebox a{ /*Area that changes to selected class when hovered over*/
 display:block;
 position: relative;
 float: left;
 left: 84px; /*Use to line up the overlay image*/
 z-index: 1;
 }
 .caption{
 color: #2FB5FF;
 font:14px Arial;
 position: relative;
 float: left;
 left: 0px;
 top: 146px;
 padding: 10px;
 background: #222;
 z-index: 1;
 }

HTML:

1
2
3
4
5
6
7
8
<div id="content">
 <div class="row">
    <div class="teebox">
       <a href="#"><img src="overlay.png"/></a><img src="pinktee.png"/>
       <div class="caption">$10</div>
    </div>
 </div>
</div>

jQuery:

1
2
3
4
5
6
7
8
9
10
11
$(document).ready(function() {
 $(".teebox a").mouseover(function(){
    $(this).parent().addClass("selected");
    $(this).find('img').animate({opacity: "0.0"}, 0); //Hides overlay
    $(this).parent().find('.caption').hide(); //Hides Caption
 }).mouseout(function(){
    $(this).parent().removeClass("selected");
    $(this).find('img').animate({opacity: "1.0"}, 0); //Shows overlay
    $(this).parent().find('.caption').show(); //Shows Caption
 });
});

2 則迴響於《[WEB]JustWEB20090629

回應已關閉。