View gist:5b0b505c7cc067b75a7a
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> |
View gist:12ad5d0ebb9693af9639
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
$(window).load(function(){//ロードが完了したら下記を実行 | |
$(".loadingWrap").fadeOut();//.loadingWrapをフェードアウトさせる | |
}); | |
</script> |
View gist:0e60aa59ee823abfd6aa
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="loadingWrap"> | |
<img src="img/now-loading.gif"> | |
</div> |
View gist:9f4c8d54a16f441c45ee
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style type="text/css"> | |
.loadingWrap { | |
width: 100%;/*100%で全画面表示*/ | |
height: 100%;/*100%で全画面表示*/ | |
background: #fff;/*背景色*/ | |
position: fixed; | |
top: 0;/*画面上部からの位置*/ | |
left: 0;/*画面左部からの位置*/ | |
z-index: 9999;/*レイヤー(この他にpositionを使用していない場合は不要)*/ | |
} |
View gist:915d72b0fb680f965e3c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> | |
<script> | |
$(window).load(function(){ | |
$(".loadingWrap").fadeOut(); | |
}); | |
</script> |
View iphone_page-2.0.5.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#shopCommonText img { | |
display: block !important; | |
max-width: 100% !important; | |
margin: 0 auto !important; | |
} |
View gist:1a60124abc9610dc8f44
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div#shopCommonText img { | |
display: none !important; | |
} |
View Android標準ブラウザで背景画像が表示されない.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Android標準ブラウザで背景画像が表示されない | |
h2 { | |
background: url(image.jpg) repeat-x; | |
background-size: auto 40px; | |
-webkit-background-size: auto 40px; /* Safari,Google Chrome用 */ | |
-moz-background-size: auto 40px; /* Firefox用 */ | |
-o-background-size: auto 40px; /* Opera用 */ | |
} |
View Android標準ブラウザでも背景画像が表示される.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Android標準ブラウザでも背景画像が表示される | |
h2 { | |
background: url(image.jpg) repeat-x; | |
background-size: 1px 40px; | |
-webkit-background-size: 1px 40px; /* Safari,Google Chrome用 */ | |
-moz-background-size: 1px 40px; /* Firefox用 */ | |
-o-background-size: 1px 40px; /* Opera用 */ | |
} |
View Android標準ブラウザでも背景画像が表示される(幅100%指定).css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Android標準ブラウザでも背景画像が表示される(幅100%指定) | |
h2 { | |
background: url(image.jpg); | |
background-size: 100% 40px; | |
-webkit-background-size: 100% 40px; /* Safari,Google Chrome用 */ | |
-moz-background-size: 100% 40px; /* Firefox用 */ | |
-o-background-size: 100% 40px; /* Opera用 */ | |
} |
OlderNewer