css配合jquery美化 select

网络编程 发布日期:2024/10/10 浏览次数:1

正在浏览:css配合jquery美化 select
一个简单的css配合jq美化select
css配合jquery美化 select 
复制代码 代码如下:
<div id="main">
<section id="basic-usage">
<select id="basic-usage-demo">
<option value="">请选择…</option>
<option>1</option>
<option>2</option>
<option>3</option>
</select>
</section>
</div>

复制代码 代码如下:
<script>
$(document).ready(function() {
$('#basic-usage-demo').fancySelect();

// Boilerplate
var repoName = 'fancyselect'

$.get('' + repoName, function(repo) {
var el = $('#top').find('.repo');

el.find('.stars').text(repo.watchers_count);
el.find('.forks').text(repo.forks_count);
});

var menu = $('#top').find('menu');

function positionMenuArrow() {
var current = menu.find('.current');

menu.find('.arrow').css('left', current.offset().left + (current.outerWidth() / 2));
}

$(window).on('resize', positionMenuArrow);

menu.on('click', 'a', function(e) {
var el = $(this),
href = el.attr('href'),
currentSection = $('#main').find('.current');

e.preventDefault();

menu.find('.current').removeClass('current');

el.addClass('current');

positionMenuArrow();

if (currentSection.length) {
currentSection.fadeOut(300).promise().done(function() {
$(href).addClass('current').fadeIn(300);
});
} else {
$(href).addClass('current').fadeIn(300);
}
});

menu.find('a:first').trigger('click')
});
</script>

复制代码 代码如下:
<style type="text/css">

div#main { font-size: 16px; line-height: 26px; color: #fff; }
div#main div.fancy-select { margin: 0 auto 60px; width: 200px; }

</style>
高通与谷歌联手!首款骁龙PC优化Chrome浏览器发布
高通和谷歌日前宣布,推出首次面向搭载骁龙的Windows PC的优化版Chrome浏览器。
在对骁龙X Elite参考设计的初步测试中,全新的Chrome浏览器在Speedometer 2.1基准测试中实现了显著的性能提升。
预计在2024年年中之前,搭载骁龙X Elite计算平台的PC将面世。该浏览器的提前问世,有助于骁龙PC问世就获得满血表现。
谷歌高级副总裁Hiroshi Lockheimer表示,此次与高通的合作将有助于确保Chrome用户在当前ARM兼容的PC上获得最佳的浏览体验。