首页 前端知识 jQuery实现在线文档,2024年最新前端面试录音

jQuery实现在线文档,2024年最新前端面试录音

2024-05-06 09:05:09 前端知识 前端哥 300 104 我要收藏

先自我介绍一下,小编浙江大学毕业,去过华为、字节跳动等大厂,目前阿里P7

深知大多数程序员,想要提升技能,往往是自己摸索成长,但自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!

因此收集整理了一份《2024年最新Web前端全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友。
img
img
img
img
img
img

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上前端开发知识点,真正体系化!

由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新

如果你需要这些资料,可以添加V获取:vip1024c (备注前端)
img

正文

nextImgId = parseInt(currentId) + 1,

nextImgSrc = opts.imgDirectory;

if (currentId == opts.lastDocNum) {

// If the last page, then do nothing

return false;

}

nextImgSrc += getFile(nextImgId);

$(this).attr(‘data-page’, nextImgId);

$(this).attr(‘src’, nextImgSrc);

})

// Implements #forwardpage and #backpage control click function.

$(‘#controls > #forwardpage, #controls > #backpage’).on(‘click’, function(e) {

e.preventDefault();

var currentId = $docImage.attr(‘data-page’),

nextImgSrc = opts.imgDirectory;

if ($(this).attr(‘id’) == ‘backpage’) {

var nextImgId = parseInt(currentId) - 1;

} else if ($(this).attr(‘id’) == ‘forwardpage’) {

var nextImgId = parseInt(currentId) + 1;

}

if ((currentId == opts.lastDocNum && $(this).attr(‘id’) == ‘forwardPage’) ||

(currentId == 1 && $(this).attr(‘id’) == ‘backpage’)) {

// If the last page or the first page, then do nothing.

return false;

}

// Loads corresponding image file.

nextImgSrc += getFile(nextImgId);

$docImage.attr(‘data-page’, nextImgId);

$docImage.attr(‘src’, nextImgSrc);

})

// Constructs the image file name.

function getFile(n) {

return n + ‘.’ + opts.fileType;

}

};

上面,我们定义了jQuery方法viewer(),我们实现了#forwardpage、#backpage和#doccontainer的点击事件处理方法,当用户点击#forwardpage、#backpage或#doccontainer动态地加载相应的文档,我们通过修改img元素的src属性来动态加载文档,并且通过data-page属性保存当前文档的页码。

CSS样式


最后,我们给#forwardpage和#backpage控件元素添加CSS样式,具体化定义如下:

/*Back and Forward button style*/

.ios-arrow-left {

cursor:pointer;

display : block;

position:absolute;

z-index : 0;

left:50px;

top:50px;

height:30px;

width:auto;

padding: 0 10px 0 6px;

background-repeat:repeat-x;

background-size : 100% 30px;

background-position :0;

background-image : -webkit-linear-gradient(

bottom,

rgba(0,0,0,0) 0%,

rgba(0,0,0,0) 50%,

rgba(255,255,255,0.1) 50%,

rgba(255,255,255,0.3) 100%

);

border-radius: 5px;

border-bottom: 1px solid rgba(255,255,255,0.4);

box-shadow :0 -1px 1px rgba(0,0,0,0.2)inset,

0 1px 2px rgba(0,0,0,0.8)inset;

font-family : HelveticaNeue;

font-weight: 400;

font-size : 12px;

line-height : 30px;

text-align:center;

color:#fff;

text-shadow : 0px -1px 0px rgba(0,0,0,0.8);

}

.ios-arrow-left:before{

position:absolute;

content : ’ ';

left:-8px;

top:3.5px;

height : 24px;

width: 24px;

z-index : 1;

background-repeat:repeat-x;

background-size : 20px 20px;

background-position :-1px -0.5px;

background-image :

-webkit-gradient(linear, left bottom, right top,

from(rgba(0,0,0,0)),

color-stop(0.5, rgba(0,0,0,0)),

color-stop(0.5, rgba(255,255,255,0.1)),

to(rgba(255,255,255,0.3)));

-webkit-transform : rotate(-45deg) skew(-10deg, -10deg);

border-top-right-radius : 10px;

border-top-left-radius :0px;

border-bottom-right-radius : 0px;

border-bottom-left-radius : 10px;

border-left : 1.5px solid rgba(255,255,255,0.4);

box-shadow : 1px 1px 1px rgba(0,0,0,0.4) inset,

-1px 1px 1px rgba(0,0,0,0.5) inset;

-webkit-mask-image :

-webkit-gradient(linear, left top, right bottom,

from(#000000),

color-stop(0.4,#000000),

color-stop(0.5, transparent),

to(transparent));

}

.ios-arrow-right {

cursor:pointer;

display : block;

position:absolute;

z-index : 0;

right:50px;

top:50px;

height:30px;

width:auto;

padding: 0 6px 0 10px;

background-repeat:repeat-x;

background-size : 100% 30px;

background-position :0;

background-image : -webkit-linear-gradient(

bottom,

rgba(0,0,0,0) 0%,

rgba(0,0,0,0) 50%,

rgba(255,255,255,0.1) 50%,

rgba(255,255,255,0.3) 100%

);

border-radius: 5px;

border-bottom: 1px solid rgba(255,255,255,0.4);

box-shadow :0 -1px 1px rgba(0,0,0,0.2)inset,

0 1px 2px rgba(0,0,0,0.8)inset;

font-family : HelveticaNeue;

font-weight: 400;

font-size : 12px;

line-height : 30px;

text-align:center;

color:#fff;

text-shadow : 0px -1px 0px rgba(0,0,0,0.8);

}

.ios-arrow-right:after{

position:absolute;

content : ’ ';

right:-7.5px;

top:3px;

height : 24px;

width: 24px;

z-index : 1;

background-repeat:repeat-x;

background-size : 20px 20px;

background-position :-1px -0.5px;

background-image :

-webkit-gradient(linear, left bottom, right top,

from(rgba(255,255,255,0.3)),

color-stop(0.5, rgba(255,255,255,0.1)),

color-stop(0.5, rgba(0,0,0,0)),

to(rgba(0,0,0,0)));

-webkit-transform : rotate(135deg) skew(-10deg, -10deg);

border-top-right-radius : 10px;

border-top-left-radius :0px;

border-bottom-right-radius : 0px;

border-bottom-left-radius : 10px;

border-top : 1.5px solid rgba(255,255,255,0.4);

box-shadow : 1px 1px 1px rgba(0,0,0,0.5) inset,

-1px 1px 1px rgba(0,0,0,0.4) inset;

总结

三套“算法宝典”

28天读完349页,这份阿里面试通关手册,助我闯进字节跳动

算法刷题LeetCode中文版(为例)

人与人存在很大的不同,我们都拥有各自的目标,在一线城市漂泊的我偶尔也会羡慕在老家踏踏实实开开心心养老的人,但是我深刻知道自己想要的是一年比一年有进步。

最后,我想说的是,无论你现在什么年龄,位于什么城市,拥有什么背景或学历,跟你比较的人永远都是你自己,所以明年的你看看与今年的你是否有差距,不想做咸鱼的人,只能用尽全力去跳跃。祝愿,明年的你会更好!

由于篇幅有限,下篇的面试技术攻克篇只能够展示出部分的面试题,详细完整版以及答案解析,有需要的可以关注

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化的资料的朋友,可以添加V获取:vip1024c (备注前端)
img

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!
人,只能用尽全力去跳跃。祝愿,明年的你会更好!

由于篇幅有限,下篇的面试技术攻克篇只能够展示出部分的面试题,详细完整版以及答案解析,有需要的可以关注

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化的资料的朋友,可以添加V获取:vip1024c (备注前端)
[外链图片转存中…(img-ska7sNEN-1713316344725)]

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

转载请注明出处或者链接地址:https://www.qianduange.cn//article/7185.html
标签
评论
发布的文章

exceljs

2024-05-11 10:05:00

Java研学-JSON与AJAX

2024-05-10 22:05:37

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!