美文网首页
简易年历

简易年历

作者: 岛屿失梦w | 来源:发表于2016-11-23 21:33 被阅读0次


1.布局

<div id="tab" class="calendar">

<ul>
<li class="active"><h2>1</h2><p>JAN</p></li>
<li><h2>2</h2><p>FER</p></li>
<li><h2>3</h2><p>MAR</p></li>
<li><h2>4</h2><p>APR</p></li>
<li><h2>5</h2><p>MAY</p></li>
<li><h2>6</h2><p>JUN</p></li>
<li><h2>7</h2><p>JUL</p></li>
<li><h2>8</h2><p>AUG</p></li>
<li><h2>9</h2><p>SEP</p></li>
<li><h2>10</h2><p>OCT</p></li>
<li><h2>11</h2><p>NOV</p></li>
<li><h2>12</h2><p>DEC</p></li>
</ul>

<div class="text">
<h2>1月活动</h2>
<p>快过年了,大家可以商量着去哪玩吧~</p>
</div>

</div>

2.css文件

<style>
* { padding: 0; margin: 0; }
li { list-style: none; }
body { background: #f6f9fc; font-family: arial; }

.calendar { width: 210px; margin: 50px auto 0; padding: 10px 10px 20px 20px; background: #eae9e9; }
.calendar ul { width: 210px; overflow: hidden; padding-bottom: 10px; }
.calendar li { float: left; width: 58px; height: 54px; margin: 10px 10px 0 0; border: 1px solid #fff; background: #424242; color: #fff; text-align: center; cursor: pointer; }
.calendar li h2 { font-size: 20px; padding-top: 5px; }
.calendar li p { font-size: 14px; }

.calendar .active { border: 1px solid #424242; background: #fff; color: #e84a7e; }
.calendar .active h2 { }
.calendar .active p { font-weight: bold; }

.calendar .text { width: 178px; padding: 0 10px 10px; border: 1px solid #fff; padding-top: 10px; background: #f1f1f1; color: #555; }
.calendar .text h2 {font-size: 14px; margin-bottom: 10px; }
.calendar .text p { font-size: 12px; line-height: 18px; }


</style>

3.jquery实现()

<script src="../jquery-1.7.2.js"></script>

<script>
var arr = [
111111111,2222222,33333333,44444444,55555555,6666666,7777777,8888888,
999999999,1000000,12121212,2323232323
];
$(function () {
$('li').mouseenter(function () {
$(this).addClass('active').siblings('li').removeClass('active');
$('.text').html('<h2>月活动</h2><p>快过年了,大家可以商量着去哪玩吧~</p>');
$('.text h2').prepend($(this).index()+1);
$('.text p').prepend(arr[$(this).index()]);
})
})
</script>

相关文章

  • 简易年历

    1、图片切换 2、快速划过没有反应 3、简易年历 4、回到顶部

  • 简易年历

    1.布局 2.css文件 3.jquery实现()

  • 简易年历

    效果图如下: html结构代码: js逻辑代码:

  • Day9 作业

    图片切换 快速划过没反应 *回到顶部 简易年历

  • Day9-作业

    1.回到顶部 2.简易年历 3切换图片 4.快速划过没反应

  • JS示例09-简易年历

    一、知识要点 1、innerHTML的使用2、字符串拼接 二、源码参考 三、运行效果

  • 原生TabControl与年历的简单Demo

    TabControl 一、Html页面布局 二、Css样式 三、Js部分 简易年历 一、Html页面布局 二、Cs...

  • 2018-08-23 day09-作业

    1.作业1图片选中 2.作业2快速划过 3.作业3简易年历 4.作业4回到顶部

  • 每日小结2.23

    JS没有块级作用域 简易年历 window.onload载入 取出所需的各个变量 循环遍历12个月份数组,自定义一...

  • 2018-08-23day-29作业

    1.切换图片 此代码实现的功能为,点击上排图片,下排的图片变换为你点击的上排图片 2.简易年历 实现点击某月,某月...

网友评论

      本文标题:简易年历

      本文链接:https://www.haomeiwen.com/subject/lcgvpttx.html