怎样安装Dreamweaver的jquery扩展,我们通常会用dreamweaver这个网页设计软件来编写网页前台代码,在编写代码时会经常出现下拉的菜单供我们选择,为我们编写代码节省了很多的时间。这样......
2023-03-17 342 JQUERY DREAMWEAVER
jQuery动态添加节点循环流程图表
新建html文档。
准备好需要用到的字体图标。
书写hmtl代码。
div class="contenedor">
div class="ciclo1">
a class="sc_object">A/a>
a class="sc_object">B/a>
a class="sc_object">C/a>
a class="sc_object">D/a>
a class="sc_object">E/a>
a class="sc_object">F/a>
a class="sc_center">center/a>
/div>
/div>
div class="btn add">Add/div>
书写css代码。
@keyframes fadein { 0% { opacity:0;} 40% { opacity:0;} 100% { opacity:1;}}
@-moz-keyframes fadein { /* Firefox */ from { opacity:0;}to { opacity: 1; }}@-webkit-keyframes fadein { /* Safari and Chrome */ 0% { opacity:0;} 40% { opacity:0;} 100% { opacity:1;}}
@-o-keyframes fadein { /* Opera */ from { opacity:0;}to { opacity: 1; }}
.col4 { width: 33.33%; float: left; }.ciclo1 { /*border: solid 1px #000;*/ position: absolute;/*background: #f0f;*/ }.contenedor { margin: 20px auto; width: 420px; height: 420px; position: relative;/*background: #0f0 !important;*/}
hr { width: 50%; float: left; }
a { color: #fff; }
.title { padding: 24px; }
h1 { letter-spacing: -.05em; font-size: 96px; /*font-family: 'Roboto', sans-serif;*/
color: #0086AB; font-weight: 100; margin-bottom: 10px; }
h2 { letter-spacing: -.05em; font-size: 36px; /*font-family: 'Roboto', sans-serif;*/
font-weight: 300; margin: 0; margin-bottom: 20px; }
body { text-align: center; color: #7b8993; /*font-family: 'Roboto', sans-serif;*/
font-weight: 400; }
.footer { margin-top: 60px; margin-bottom: 100px; }
.footer a { color: #7b8993; margin: 20px 1px; }
.footer p { line-height: 30px; }
.by { color: #3d464d; font-size: 13px; }
.div_options { display: none; text-align: left; padding-left: 100px; }
.btn { width: 200px; padding: .37rem;
margin: .37rem;
background-color: transparent; border-radius: 4px; cursor: pointer; border: 2px solid #f35626; line-height: 1.375; font-weight: 700; color: #f35626; }
.add { width: 100px; font-size: 13px; border: 2px solid #40A4C0 !important; color: #40A4C0; margin: 20px auto; }
.sc_object { transition: left 1s ease-out, top 1s ease-out; }
.sc_object a { color: #305ca7; }
.pointers { ani mation: fadein 0.6s ease-in; -moz-ani mation: fadein 0.6s ease-in; /* Firefox */ -webkit-ani mation: fadein 0.6s ease-in; /* Safari and Chrome */ -o-ani mation: fadein 0.6s ease-in; /* Opera */ }
书写并添加js代码。
script src="js/jquery-2.1.1.min.js">/script>
script src="js/smartCycle.min.js">/script>
script>
var radio = 160;
var radio_arrows =140;
var container_width = 420, container_height=420;
var c_container_width = 420, c_container_height=420;
$(".ciclo1").smartCycle({
container_width: '420px',
container_height: '420px',
radio: radio,
radio_arrows: radio_arrows,
arrows_colors:['#40A4C0'],
colors:['#928fa2','#928fa2']
});
var alphabet = ['A','B','C','D','E','F','G','H','I','J','K','L','M','N','Ñ','O','P','Q','R','S','T','U','V','W','X','Y','Z'];
var alphabet_pos =6;
$(".add").click(function(){
$(".ciclo1").append('a class="sc_object">' alphabet[alphabet_pos] '/a>');
radio =25;
radio_arrows =25;
container_width =50;
container_height =50;
c_container_width =50;
c_container_height =50;
$(".contenedor").css({
'width':c_container_width 'px',
'height':c_container_height 'px'
});
$(".ciclo1").smartCycle('options',{'radio': radio, 'radio_arrows': radio_arrows, 'container_width': container_width 'px',
'container_height': container_height 'px',});
$(".ciclo1").smartCycle('realign');
alphabet_pos =1;
});
/script>
代码整体结构。
查看效果。
以上方法由办公区教程网编辑摘抄自百度经验可供大家参考!
标签: JQUERY
相关文章
怎样安装Dreamweaver的jquery扩展,我们通常会用dreamweaver这个网页设计软件来编写网页前台代码,在编写代码时会经常出现下拉的菜单供我们选择,为我们编写代码节省了很多的时间。这样......
2023-03-17 342 JQUERY DREAMWEAVER
jQuery MiniUI 快速入门,前段时间由于工作的原因接触到MiiUI。感觉MiiUI很强大,使用起来也很舒服。下面我就带领大家快速的使用MiiUI。MiiUI-专业WeUI控件库它能缩短开发时......
2023-03-17 330 JQUERY
怎么使用JQuery Mobile开发移动网站,现在越来越多的人用网站来做手机a,这样的好处是,可以做一个网站,基本上可以做到多个平台adroid,io,w,都可以使用。这里使用JQueryMoile......
2023-03-17 374 JQUERY