Skip to content

Instantly share code, notes, and snippets.

@drawinghow
drawinghow / ie67891011-css-hacks.txt
Created July 2, 2019 06:56 — forked from vidaaudrey/ie67891011-css-hacks.txt
IE CSS hacks - IE6, 7, 8, 9, 10, 11
IE6 Only
==================
_selector {...}
IE6 & IE7
==================
*html or { _property: }
IE7 Only
==================
@drawinghow
drawinghow / README.md
Created October 23, 2018 08:56 — forked from e9t/README.md
D3로 우리나라 인구밀도 시각화하기
@drawinghow
drawinghow / current-slide.js
Created April 27, 2017 08:19 — forked from jayllellis/active-slide.js
Add a class to current slide in bxSlider
$('.top-slider').bxSlider({
onSliderLoad: function(currentIndex) {
$('.top-slider').children().eq(currentIndex + 1).addClass('active-slide');
},
onSlideAfter: function($slideElement){
$('.top-slider').children().removeClass('active-slide');
$slideElement.addClass('active-slide');
}
});