B-Teck!

お仕事からゲームまで幅広く

2018-02-26から1日間の記事一覧

【CSS】文字の左右に線を引く

CSS

See the Pen OQBwvy by baetdjam (@beatdjam) on CodePen. 説明 文字の要素をFlexboxにして、align-items で垂直方向を中央ぞろえする。 疑似要素 :before、:afterで、文字の前後に空の要素(content:"")を追加する 解説 flex-grow:1を設定することで、要素内…

【JavaScript/jQuery】要素を切り替えるスライダー

しくみ さんぷる See the Pen VQEZwM by baetdjam (@beatdjam) on CodePen. こーど js $(window).on('load',function(){ class slider{ constructor(time, slideId, innerArea, prevBtn, nextBtn){ this.slideId = slideId; this.innerArea = innerArea; thi…