テーブルをレスポンシブに対応させる
.tableMin{ tbody tr{ display: block; margin-bottom: 1.5em; } tbody th, tbody td{ display: list-item; border: none; } }
WPなど案件構築覚書
.tableMin{ tbody tr{ display: block; margin-bottom: 1.5em; } tbody th, tbody td{ display: list-item; border: none; } }
.rotatePhoto { width: 300px; height: 300px; overflow: hidden; } .rotatePhoto img { transition: 0.5s; } .rotatePhoto img:hover { -moz-transform: rotateY(180deg); -webkit-transform: rotateY(180deg); -o- […]
.scalePhoto { width: 200px; heght: 200px; overflow: hidden; img { -moz-transition: -moz-transform 0.3s linear; -webkit-transition: -webkit-transform 0.3s linear; -o-transition: -o-transform 0.3s linea […]
@include clearfix; @mixin clearfix{ .clearfix:before, .clearfix:after { content: ""; display: table; } .clearfix:after {clear: both;} .clearfix { *zoom: 1; &:before, &:after { display: block; […]
<script> $(function(){ var setElm = $('.scrEvent'), delayHeight = 100; setElm.css({display:'block',opacity:'0'}); $('html,body').animate({scrollTop:0},1); $(window).on('load scroll resize',funct […]
// スクロール位置取得 var scrollPosTop = $(window).scrollTop(); //ウインドウTOP var scrollPosUnder = $(window).scrollTop() + $(window).height(); // ウインドウ下部 取得は、ロード時、スクロール時、リサイズ時に行う $(window).on('load scroll resize' […]
function megaMenu(){ $("#globalNav ul li").on('click', function(){ $('.megaMenu').hide(); $('div.' + $(this).prop('class')).slideDown('fast'); if ($(this).hasClass('active')) { $(this).removeClass('ac […]
width:100%、absoluteしたinnerを挟む。 <div class="content"> <div class="inner"> <p class="hoge">width:100%、absoluteしたinnerを挟む</p> <p class="fuga">fuga</p> </div> < […]
aタグに付ける別窓指定アイコンなど、要素の後ろに画像を入れたい場合に用いる。 span { position: relative; &:after { background: url(../images/common/icon-window.png) no-repeat; @include background-size(cover); bottom: 50%; content: ''; […]
ページのURLを取得し、「/」で分割を行い配列に格納する。 配列の中の指定の番号の文字列を比較する。 <?php $url = $_SERVER['REQUEST_URI']; $url = explode('/', $url); if (($url[3] == 'inquiry') or ($url[3] == 'estimate') or ($url[3] == 'company')) […]